GithubHelp home page GithubHelp logo

Comments (5)

csala avatar csala commented on July 21, 2024

I need to point out that currently there actually is a way to set these options, even though it's kind of a hack:

fig = gmaps.figure()

# Add any layers before the next step

fig._map.data_bounds = [
    (min_lat, min_long),
    (max_lat, max_long)
]
fig

But, again: this is just a shortcut to make it work until the right implementation is in place.

from gmaps.

pbugnion avatar pbugnion commented on July 21, 2024

Thanks for this -- it's very very useful to have workarounds for missing features.

from gmaps.

pbugnion avatar pbugnion commented on July 21, 2024

This is now implemented:

gmaps.figure(center=(40.75, -74.00), zoom_level=12)

center and zoom_level must either be both specified, or neither. In the case where neither are specified, the figure as behaves as before: centering on the data.

It will make its way into v0.5.3.

from gmaps.

CMCDragonkai avatar CMCDragonkai commented on July 21, 2024

from gmaps.

pbugnion avatar pbugnion commented on July 21, 2024

What exactly is a zoom level?

That's a good question. The zoom level is an integer between 0 and 21 that gets given directly to the Google Maps API (see the Google Maps documentation). It is, as you say, a factor of height / elevation of the camera (conceptually at least).

Then do camera dimensions also matter for field of view

The width and height of the map do matter for the field of view.

Note that, for now, the old 'hacky' way of overriding the map bounds explicitly also works:

fig._map.data_bounds = [
    (min_lat, min_long),
    (max_lat, max_long)
]

This guarantees that the map contains at least (min_lat, min_long) and (max_lat, max_long).

I think allowing the user to set the zoom and center is the least surprising implementation, but I'm open to adding other ways of calculating the map bounds if there is demand for it.

from gmaps.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.