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 cm3mzbk26gppdxtnpsgph" \
-H "Content-Type: application/json" \
-d "{
\"latitude\": 0.5614299166663415,
\"longitude\": -13.062231256783974,
\"title\": \"Demo marker\"
}"
Simply add the path to our root URL, and you're ready to go. No complex setups, just instant maps. For example: https://mapisy.com/m3krnrlu_skbj3b
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}
}"