API v4.0 is now available

VietMap MAPs API
& Location Services

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.

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);