
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
mappls-map-react-native
Advanced tools
Easy To Integrate Maps & Location APIs & SDKs For Android Applications
Powered with India's most comprehensive and robust mapping functionalities.
You can get your api key to be used in this document here: Mappls Dashboard
The sample code is provided to help you understand the basic functionality of Mappls maps & REST APIs working on Android native development platform.
Explore through 200+ countries & territories with Global Search, Routing and Mapping APIs & SDKs by Mappls.
| Version | Last Updated | Author |
|---|---|---|
| 2.0.2 | 29 Sep 2025 | Mappls API Team |
| 2.0.1 | 17 Sep 2025 | Mappls API Team |
| 2.0.0 | 29 Aug 2025 | Mappls API Team |
Your Mappls Maps SDK usage needs a set of license keys (get them here) and is governed by the API terms and conditions. As part of the terms and conditions, you cannot remove or hide the Mappls logo and copyright information in your project.
The allowed SDK hits are described on the user dashboard page. Note that your usage is shared between platforms, so the API hits you make from a web application, Android app or an iOS app all add up to your allowed daily limit.
<appId>.a.olf
<appId>.a.conf
<appId>.i.olf
<appId>.i.conf
ios/Podfile, add the following line inside the post_install block:
$MAPPLS_MAPS.post_install(installer)


npm
npm install mappls-map-react-native --save
settings.gradle or settings.gradle.kts file:
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven(url = "https://maven.mappls.com/repository/mappls/")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven {
url 'https://maven.mappls.com/repository/mappls/'
}
}
}
<appId>.a.olf and <appId>.a.conf) into the module app-level root directory of your app<appId>.i.olf and <appId>.i.conf) in your project bundlepost_install do |installer|
# Other post install hooks...
+ $MAPPLS_MAPS.post_install(installer)
end
import React, { Component } from "react";
import {View } from "react-native";
import MapplsGL from 'mappls-map-react-native';
export default class App extends Component {
render() {
return (
<View style={{flex:1}}>
<MapplsGL.MapView style={{flex:1}} >
<MapplsGL.Camera
ref={c => (this.camera = c)}
zoomLevel={12}
minZoomLevel={4}
maxZoomLevel={22}
centerCoordinate={[77.231409,28.6162]}
/>
</MapplsGL.MapView>
</View>
);
}
}
For any queries and support, please contact:
Email us at apisupport@mappls.com
Support
Need support? contact us!
FAQs
A Mappls GL react native module for creating custom maps
The npm package mappls-map-react-native receives a total of 343 weekly downloads. As such, mappls-map-react-native popularity was classified as not popular.
We found that mappls-map-react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.