jquery.gmaps.js 297 B

12345678910111213
  1. $(document).ready(function () {
  2. // Simple map
  3. map = new GMaps({
  4. el: '#gmaps-simple',
  5. lat: 34.05,
  6. lng: -78.72,
  7. zoom: 5,
  8. panControl: false,
  9. streetViewControl: false,
  10. mapTypeControl: false,
  11. overviewMapControl: false
  12. });
  13. });