macrostrat

lat-lng-to-tile

Convert latitude/longitude coordinates to map tile coordinates (x, y) for a given zoom level. Uses the same web mercator projection as MapKit.

Remote blake365/macrostrat-mcp

Other tools also called lat-lng-to-tile? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "lat": {
      "type": "number",
      "maximum": 90,
      "minimum": -90,
      "description": "Latitude in decimal degrees (-90 to 90)"
    },
    "lng": {
      "type": "number",
      "maximum": 180,
      "minimum": -180,
      "description": "Longitude in decimal degrees (-180 to 180)"
    },
    "zoom": {
      "type": "integer",
      "maximum": 18,
      "minimum": 0,
      "description": "Zoom level (0-18)"
    }
  }
}