ItSolutionStuff.com

Google Maps API Google Map with Draggable Marker Example

By Hardik Savani • November 5, 2023
Javascript jQuery Google Map

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

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel 10 Google Charts Tutorial Example

Read Now →

Angular 14 Google Maps Integration Tutorial Example

Read Now →

Laravel Google Maps Multiple Markers Example

Read Now →

How to Add Google Map in Laravel?

Read Now →

Google Maps Autocomplete Search Only One Country

Read Now →

Google Maps API Google Map with Draggable Marker Example

Read Now →

Google Maps API - Autocomplete Address Search Box with Map Example

Read Now →

Autocomplete Places Search Box using Google Maps Javascript API

Read Now →

How to use Google ReCaptcha in Laravel?

Read Now →

Codeigniter Google Recaptcha Form Validation Example

Read Now →

PHP MySQL Login with Google Account Example

Read Now →

Laravel Multiple Markers in Google Map using Gmaps.js

Read Now →

How to Integrate Google Map using Gmaps JS?

Read Now →