Nearby Search Plugin for Mappls Web Maps¶
Easy To Integrate Maps & Location APIs & SDKs For Web & Mobile Applications
Powered with India's most comprehensive and robust mapping functionalities. Now Available for 200+ nations and territories accross the world.
Getting Access¶
Before using the Plugin in the your solution, please ensure that the related access is enabled in the Mappls Console, in the same project you set up for the Maps SDK.
- Copy and paste the generated
access token
from your API keys available in the dashboard in the sample code for interactive map development.- This APIs follow OAuth2 based security.
Access Token
can be generated using Token Generation API.- To know more on how to create your access tokens, please use our authorization API URL. More details available here
- The
access token
is a valid by default for 24 hours from the time of generation. This can be configured by you in the API console.
- The sample codes are provided on our domain to help you understand the very basic functionality of Mappls Nearby Search Plugin. See Sample Codes here
Document Version History¶
Version | Remarks | Author |
---|---|---|
3.0 | Document Added | Mappls API Team (MS) |
3.0 | Document Update | SDK Product Team (PK) |
Introduction¶
A simple plugin / widget to search for nearby places powered by the best online maps from Mappls. The Nearby Search plugin for Mappls Web Map JS library is provided as a means to enable radially searching for Nearby Places on Mappls Maps.
The plugin can be used in combination with our Interactive Map JS library but it also possesses the adaptability to be used as an independent plugin within any web app implementation. Thus it enables developers to include Mappls web JS in their own customized solutions easily.
The SDK offers the following basic functionalities: 1. Ability to search for nearby places directly with or without Mappls Maps visual interface. 2. A Mappls.nearby() method to initiate nearby search across all categories of places available on Mappls. 3. Ability to get information from Mappls Place Search plugin through a callback 4. Include the Nearby Search Plugin with or without an interactive Map component.
Live Demo¶
Visit the following link for visiting the live demo:
Web sdk implementation : Mappls Live Demo
React JS Implementation Live Video : CodeSandbox
1. Add the Nearby Search plugin¶
React JS¶
import { mappls, mappls_plugin } from "mappls-web-maps";
import { useEffect, useRef, useState } from "react";
const mapplsClassObject = new mappls();
const mapplsPluginObject = new mappls_plugin();
const NearbySearchPlugin = ({ map }) => {
const nearbysearchRef = useRef(null);
useEffect(() => {
if (map && nearbysearchRef.current) {
nearbysearchRef.current.remove();
mapplsClassObject.removeLayer({ map, layer: nearbysearchRef.current });
}
var options = {
divId: "nearby_search",
map: map,
keywords: "atm",
refLocation: "28.632735,77.219696",
fitbounds: true,
icon: {
url: "https://apis.mappls.com/map_v3/1.png",
},
click_callback: function (d) {
if (d) {
var l =
"Name: " +
d.placeName +
"\nAddress: " +
d.placeAddress +
"\neLoc: " +
d.eLoc;
alert(l);
}
},
};
nearbysearchRef.current = mapplsPluginObject.nearby(
options,
function (data) {
let nr = data;
console.log(nr);
}
);
return () => {
if (map && nearbysearchRef.current) {
mapplsClassObject.removeLayer({ map, layer: nearbysearchRef.current });
}
};
}, [map]);
};
const App = () => {
const mapRef = useRef(null);
const [isMapLoaded, setIsMapLoaded] = useState(false);
const loadObject = { map: true, plugins: ["nearby"] };
useEffect(() => {
mapplsClassObject.initialize("<Token>", loadObject, () => {
const newMap = mapplsClassObject.Map({
id: "map",
properties: {
center: [28.633, 77.2194],
zoom: 4,
},
});
newMap.on("load", () => {
setIsMapLoaded(true);
});
mapRef.current = newMap;
});
return () => {
if (mapRef.current) {
mapRef.current.remove();
}
};
}, []);
return (
<div
id="map"
style={{ width: "100%", height: "99vh", display: "inline-block" }}
>
{isMapLoaded && <NearbySearchPlugin map={mapRef.current} />}
</div>
);
};
export default App;
Angular¶
import { Component, OnInit } from '@angular/core';
import { mappls, mappls_plugin } from 'mappls-web-maps';
@Component({
selector: 'app-root',
template: '',
styleUrls: ['./app.component.css'],
})
export class AppComponent implements OnInit {
mapObject: any;
mapplsClassObject = new mappls();
mapplsPluginObject = new mappls_plugin();
mapProps = {
center: [28.633, 77.2194],
traffic: false,
zoom: 4,
geolocation: false,
clickableIcons: false,
};
ngOnInit() {
const loadObject = {
map: false,
plugins: ['nearby'],
};
this.mapplsClassObject.initialize(
'<----- Add your token here ------>',
loadObject,
() => {
var options = {
divId: 'nearby_search',
keywords: 'atm',
refLocation: '28.632735,77.219696',
fitbounds: true,
icon: {
url: 'https://apis.mappls.com/map_v3/1.png',
},
click_callback: function (d: any) {
if (d) {
var l =
'Name: ' +
d.placeName +
'\nAddress: ' +
d.placeAddress +
'\neLoc: ' +
d.eLoc;
alert(l);
}
},
};
this.mapplsPluginObject.nearby(options, function (data: any) {
let nr = data;
console.log(nr);
});
}
);
}
}
Mandatory Parameters¶
keywords
: The string or JSON object which will be passed as input query to the search engine. Examples- As a string:
keywords:"atm"
. This parameter supports input in Hindi Languagekeywords:"चाय"
. To get the feature contact apisupport@mapmyindia.com. - As a JSON object:
keywords:{'FINATM':'ATMS','FODCOF':'Restaurants'}
. This parameter supports input in Hindi Languagekeywords:{'एचडीएफसी ':'एटीएम'}
. To get the feature contact apisupport@mapmyindia.com. This mechanism is used to display a selection of POI categories on a UI. Ifkeywords
parameter is used, thenrefLocation
input also becomes mandatory.
- As a string:
callback
: (method): results will be returned in this method if specified.
OR
hyperLink
: This is the URL received from Mappls Place Search plugin for bridged Nearby Search. i.e. A Nearby Search trigerred directly from the Place Search Plugin.
Optional Parameters¶
refLocation
: location coordinates which will be used as centroid of the radial search reference . e.g.refLocation:[28.61, 77.23]
ORrefLocation:[28.61, 77.23]
map
: A map object from our Maps SDK. Markers can also be passed here that will be displayed on map. Custom icons also can be passed here.divId
: The HTML where developer wishes results to be displayed. Example:divId:document.getElementbyId('Nrdiv');
divHeight
: (in pixels) for customizing or improving results display UI.icon
: (object) To set the icons of the resulting categories of results.- Single Category: Example:
icon: {
url: '2.png'
}
OR
icon: {
html: " < div > < img src = 'pin.png' > < /div>",
width: 30,
height: 40
}
- *Multiple Category*: Example:
icon: {
'FINATM': {
url: 'atm.png',
height: 40,
width: 30
},
'FODCOF': {
url: 'food.png',
height: 40,
width: 32
}
}
Optional parameters for icon configuration are as follows:
- `offset`: Example: `offset:[20,40]`
- `popupAnchor`: Example: `popupAnchor:[-10,20]`
popup
: (boolean) Default is true if map is used. Used to bind popup to markers.popupOptions
: (object) Used to define pop up optional configuration. Example:popupOptions: {maxWidth:250}
fitbounds
: (boolean) Default is true. Used to fit all markers to in map view bound.geolocation
: boolean value used to enable or disable current location selection . Default is true.radius
: (number): Defines the radius of nearby search.bounds
: (geographic bounds): Used to define the rectangular bounds within which nearby search will work.sortBy
: (string)Used to sort the nearby search results.page
: (number): to request another page of results if available.pod
: (string): to filter to a certain type of results.callback_click
: (method): a method that will be called when user clicks on any listing. The action returns the eLoc of the selected place.
Types of Nearby Search Implementations¶
1. Get data from category & coordinates¶
Following is an example of calling mappls.nearby() method to get data from category and coordinates:
var res= this.mapplsPluginObject.nearby(({keywords:"atm",refLocation:"123ZRR"});
2. Get data from Mappls Search category url¶
var res= this.mapplsPluginObject.nearby(({hyperLink:'https://atlas.mapmyindia.com/api/places/nearby/json?explain&richData&&refLocation=28.61,77.23&keywords=FINATM'});
3. Get data from category & location selection UI¶
var res= this.mapplsPluginObject.nearby(({divId:'nearby_divId',keywords:{'FINATM':'ATMs', 'FODCOF':'Restaurants'}});
This will place a selection of keywords and a location selection UI inside divId
.
Remove Nearby Markers within callback from Map¶
Use remove() method to remove markers from map.
nrObj.remove();
Add Event to Markers¶
Use addListener() method to associate events to markers.
nrObj.addListener('click',function(data){ console.log(data);});
That's All !
For any queries and support, please contact:
Email us at apisupport@mappls.com
Support
Need support? contact us!