Comprehensive solutions: Maps API, two- and three-tier address search, routing and fleet management — fully optimized for Vietnam. Supports the post-merger address format (from 1 July 2025) and converts old addresses to the new one.
How to use with AI Agent
.zip — you'll get 6 .txt context files
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);