Easily create maps and add markers with our API. Perfect for tracking locations, sharing points of interest, and visualizing data with minimal setup.
Forget complicated APIs. Just create, customize, and share your map in seconds.
curl -X POST https://mapisy.com/api/maps/demo/markers \
-H "Authorization: Bearer d3gnkv8xuv60d7tm403q2c" \
-H "Content-Type: application/json" \
-d "{
\"latitude\": -52.92363529591223,
\"longitude\": 62.729073953758984,
\"title\": \"Demo marker\"
}"
Just add the path to the current URL and, if it's available, that's it. No complex setups, just instant maps.
Set the center, zoom level, title, and description of your map with ease. Mapisy adapts to your specific needs.
Use the simple API to add markers in seconds. Every point shows up on your map instantly, giving you live data visualization.
Share your map with a simple link. Perfect for highlighting points of interest and showcasing data effortlessly.
curl -X POST https://mapisy.com/api/maps/{map_id}/markers \
-H "Authorization: Bearer {api_key}" \
-H "Content-Type: application/json" \
-d "{
\"latitude\": {latitude},
\"longitude\": {longitude},
\"title\": {title}
}"
curl -X DELETE https://mapisy.com/api/maps/{map_id}/markers/{marker_id} \
-H "Authorization: Bearer {api_key}" \
-H "Content-Type: application/json"
curl -X PUT https://mapisy.com/api/maps/{map_id} \
-H "Authorization: Bearer {api_key}" \
-H "Content-Type: application/json" \
-d "{
\"latitude\": {latitude},
\"longitude\": {longitude},
\"zoom\": {zoom},
\"title\": {title},
\"description\": {description}
}"