K-Gmaps

JS

$(document).ready(function() {
  $('.gmap_canvas').kmaps({
    zoom: 15,
    Address: '211A Ngô Tùng Châu, Gò Công, Tiền Giang, Việt Nam',
    Lat: '10.359352',
    Lng: '106.673089',
    MarginLat: '-0.0050',
    MarginLng: '0',
    center: true,
    scrollwheel: false,
    draggable: true,
    disableDefaultUI: true,
    styles: 'red', // white, black, river, green, cyan, yellow
    imgMap: 'images/logo_map.png',
    mapType: 'ROADMAP', // SATELLITE, HYBRID, TERRAIN,
    Title: 'Hello',
    infoWindow: 'Hello',
    InfoWidth: '200',
    disableOpenURL: true,
    fullscreenControl: false,
    disableDoubleClickZoom: false,
    OpenURL: 'View full map'
  });
});

HTML