VIETMAP MAPs API

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.

Why Choose VietMap API?

Vietnam's #1 digital mapping platform with weekly data updates, providing maximum support for local businesses.

Detailed Local Data

Detailed maps down to village/hamlet level, updated traffic signs, speed cameras, and speed limits across 34 provinces.

Easy Integration

Fully compatible with industry standards like GeoJSON, Vector Tiles. SDK support for Web, Android, iOS, and Flutter.

Cost Optimization

Reasonable costs for Vietnamese businesses. An effective alternative to Google Maps API with up to 70% cost savings.

Start with just a few lines of code

Initialize VietMap GL JS simply. Register an account to receive a free API Key for the development environment.

  • Free 60.000 transaction/month, free in 2 months
  • Technical Support
  • Detailed Documentation
Get API Key Now
map-initialization.js
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);