Today, I am assigned a task from my today work (Jira).
That was I have to query available shop location and nearby rider location from database and show them on a map with its own information.
For this, I used google map api. The host application is used Laravel and yes, JavaScript is a must to involve in this case.
I won't tell you all my process coz it'll be boring and long.
So, I'm going to tell you only basic steps you can follow.
First step,
Go to google developer console and get an api key.
https://developers.google.com/maps/documentation/javascript/get-api-keyadd div tag in your blade template.
map data will be render into that document using that id (map).
<div id="map"></div>
- import google map script tag. You've got api key from step 1 right?. Add that api key to {your_api_key} place. 'myMap' will be the callback function name that we'll add later.
<script src="https://maps.googleapis.com/maps/api/js?key={your_api_key}&callback=myMap"></script>
- Add myMap function. In this case, we add a pair of lat/long location as center and marker on map. In order to show on map, we render on map data on our div using document.getElementById('map'). It has a lot of cool features google.maps so if you are interested to test, you can do more research on this.
function myMap() {
var center = {lat: 16.81265991142744, lng: 96.12810673385788};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 12,
center: center
});
let marker =new google.maps.Marker({
position: {lat: 16.81265991142744, lng: 96.12810673385788},
map: map,
icon: 'http://maps.google.com/mapfiles/ms/icons/green-dot.png'
});
}
Yeah, you can test with multiple locations and markers and so on. That'll be pretty fun.
Thanks for your time.
See you on another blog.
Top comments (0)