google-maps-link
Generate a Google Maps link using latitude and longitude coordinates to locate tram stations or stops on the Zaragoza tram system for easy navigation.
Instructions
Get a Google Maps link from coordinates to help people to find a station o stop
Input Schema
Name | Required | Description | Default |
---|---|---|---|
latitude | Yes | ||
longitude | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"latitude": {
"type": "number"
},
"longitude": {
"type": "number"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}