Comprehensive solutions including Maps API, Geocoding, Routing, and Fleet Management, specifically optimized for Vietnam. These solutions feature updated address search (post–July 1, 2025) and support migration from old to new address formats.
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);