Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unexpected point geometries on geom_livemap() #547

Closed
IKupriyanov-HORIS opened this issue Jun 9, 2022 · 0 comments
Closed

Unexpected point geometries on geom_livemap() #547

IKupriyanov-HORIS opened this issue Jun 9, 2022 · 0 comments
Assignees

Comments

@IKupriyanov-HORIS
Copy link
Collaborator

geom_livemap() should not render points if data and mappings provided by ggplot() function but symbol parameter is not set.

x = []
y = []
z = []
for i in range(-10, 10):
    for j in range(-10, 10):
        x.append(i)
        y.append(j)
        z.append(i - j)
d = {
    'x': x, 
    'y': y, 
    'z': z
}
ggplot(d, aes('x', 'y', fill='z')) + geom_livemap() + geom_tile(alpha=.7)

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant