Google Maps API Google Map with Draggable Marker Example
Hi Artisan,
Are you looking for simple map for your website, if yes then you are a right place. i will create simple google map with marker using google api. you are also simply able to get lat and long from google map marker. if you are developing with wordpress, php, laravel then also easily use.
You have to simple copy below code and paste on your website. Also you can see demo from below button.
Preview:
index.html
<!DOCTYPE html>
<html>
<head>
<title>Google Maps API - Simple google map with draggable marker Example</title>
<style type="text/css">
#map {
width: 100%;
height: 400px;
}
</style>
</head>
<body>
<h1>Google Maps API - Simple google map with draggable marker Example</h1>
<div id="map"></div>
<ul id="geoData">
<li>Latitude: <span id="lat-span"></span></li>
<li>Longitude: <span id="lon-span"></span></li>
</ul>
<script>
function initMap() {
var myLatLng = {lat: 22.3038945, lng: 70.80215989999999};
var map = new google.maps.Map(document.getElementById('map'), {
center: myLatLng,
zoom: 13
});
var marker = new google.maps.Marker({
position: myLatLng,
map: map,
title: 'Hello World!',
draggable: true
});
google.maps.event.addListener(marker, 'dragend', function(marker) {
var latLng = marker.latLng;
document.getElementById('lat-span').innerHTML = latLng.lat();
document.getElementById('lon-span').innerHTML = latLng.lng();
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?libraries=places&callback=initMap" async defer></script>
</body>
</html>
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel 10 Google Charts Tutorial Example
- Angular 14 Google Maps Integration Tutorial Example
- Laravel Google Maps Multiple Markers Example
- How to Add Google Map in Laravel?
- Google Maps Autocomplete Search Only One Country
- Google Maps API Google Map with Draggable Marker Example
- Google Maps API - Autocomplete Address Search Box with Map Example
- Autocomplete Places Search Box using Google Maps Javascript API
- How to use Google ReCaptcha in Laravel?
- Codeigniter Google Recaptcha Form Validation Example
- PHP MySQL Login with Google Account Example
- Laravel Multiple Markers in Google Map using Gmaps.js
- How to Integrate Google Map using Gmaps JS?