Demo - google map - hiển thị ngôn ngữ tiếng việt
RUN
<!DOCTYPE html> <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> <style type="text/css"> html { height: 100% } body { height: 100%; margin: 0; padding: 0 } #map-canvas { height: 100% } </style> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDfNk5eVWmQB9e6ApnWzICLNIY5lUXpOBw&language=vi"></script> <script type="text/javascript"> // Function khởi tạo google map function initialize() { // Config google map var mapOptions = { // Tọa độ muốn hiển thị ban đầu (tung độ,vỹ độ) center: new google.maps.LatLng(10.771971, 106.697845), // Mức độ zoom zoom: 8 }; // Hiển thị map lên bản đồ (div#map-canvas) var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions); } // Gán hàm initialize vào trong sự kiện load dom google map google.maps.event.addDomListener(window, 'load', initialize); </script> </head> <body> <div id="map-canvas"/> </body> </html>
PHÓNG TO