Comprehensive solutions including Maps API, Geocoding, Routing, Navigation SDK, and Fleet Management. Specifically optimized for Vietnam, featuring updated address search (post-July 1, 2025) and precise turn-by-turn navigation.
Vietnam's #1 digital mapping platform with weekly data updates, providing maximum support for local businesses.
Detailed maps down to village/hamlet level, updated traffic signs, speed cameras, and speed limits across 34 provinces.
Fully compatible with industry standards like GeoJSON, Vector Tiles. SDK support for Web, Android, iOS, and Flutter.
Reasonable costs for Vietnamese businesses. An effective alternative to Google Maps API with up to 70% cost savings.
Initialize VietMap GL JS simply. Register an account to receive a free API Key for the development environment.
import vietmapgl from "@vietmap/vietmap-gl-js/dist/vietmap-gl";
import '@vietmap/vietmap-gl-js/dist/vietmap-gl.css';
const map = new vietmapgl.Map({
container: 'map',
style: 'https://maps.vietmap.vn/maps/styles/...',
center: [106.660, 10.762], // Ho Chi Minh City
zoom: 15,
pitch: 45
});
// Add marker
new vietmapgl.Marker()
.setLngLat([106.660, 10.762])
.addTo(map);