Code Monkey home page Code Monkey logo

Comments (2)

wang-boyu avatar wang-boyu commented on May 28, 2024

Publicly available map tiles are supported now, as summarized in #48 (comment).

If map providers need access keys, we can specify them when defining RasterWebTile:

map_tile = mg.RasterWebTile(
             url="https://PROVIDER_URL.png?key={key}",
             options={
                 "attribution": PROVIDER_ATTRIBUTION,
                 "key": API_KEY,
             },
         )
map_element = mg.visualization.MapModule(..., tiles=map_tile, ...)

or use those from xyzservices and provide them like mentioned in their docs.

However this is not yet tested - I am not sure whether Leaflet.js will work with such configurations automatically. Perhaps some more work in MapModule.js is required when passing these configurations to Leaflet.js.

I will register some map services and test this later.

from mesa-geo.

wang-boyu avatar wang-boyu commented on May 28, 2024

Tested with Mapbox and it appears to be working. I can either use

import mesa_geo as mg

mg.RasterWebTile(
    url="https://api.mapbox.com/v4/mapbox.satellite/{z}/{x}/{y}.png?access_token={access_token}",
    options={
        "access_token": "my-private-ACCESS_TOKEN",
        "attribution": '&copy; <a href="https://www.mapbox.com/about/maps/" target="_blank">Mapbox</a> &copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors <a href="https://www.mapbox.com/map-feedback/" target="_blank">Improve this map</a>',
    },
)

or

import xyzservices.providers as xyz

xyz.MapBox(id="<insert map_ID here>", accessToken="my-private-ACCESS_TOKEN")

Note that access_token can have different names depending on the provider, e.g., api_key or key.

I will update the docstrings accordingly. Closing this as completed.

from mesa-geo.

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.