Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@openmobilehub/maps-plugin-mapbox
Advanced tools
Platform | Supported |
---|---|
Android | ✅ |
iOS | ❌ |
yarn add @openmobilehub/maps-plugin-mapbox
:::info[Prerequisites]
Each plugin requires you to follow the @openmobilehub/maps-core
setup guide. You can find it here.
:::
// Credentials setup must be done before using the map view.
OmhMapsPluginMapboxModule.setPublicToken('<YOUR_PUBLIC_TOKEN>');
Add the following maven setup to your android/build.gradle
file:
// ...
allprojects {
repositories { repositoryHandler ->
google()
mavenCentral()
// Mapbox Maven repository
maven {
url = uri("https://api.mapbox.com/downloads/v2/releases/maven")
// Do not change the username below. It should always be "mapbox" (not your username).
credentials.username = "mapbox"
// Use the secret token stored in gradle.properties as the password
credentials.password = providers.gradleProperty("MAPBOX_DOWNLOADS_TOKEN").get()
authentication { basic(BasicAuthentication) }
}
}
}
If you plan to use location services, you need to add the following permissions to your AndroidManifest.xml
file:
<manifest ...>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application ...>
...
</application>
</manifest>
Before interacting with any maps plugin, it is necessary to initialize the maps module.
import {OmhMapView, OmhMapsModule, OmhMapsAppleMapsIOSProvider} from '@openmobilehub/maps-core';
import {OmhMapsMapboxProvider, OmhMapsPluginMapboxModule} from '@openmobilehub/maps-plugin-mapbox';
// You can use different providers for iOS and Android.
// For Android, you can use different providers for devices with and without Google Play Services.
// Remember to initialize the module before using any of its components.
OmhMapsModule.initialize({
gmsProvider: OmhMapsMapboxProvider,
nonGmsProvider: OmhMapsMapboxProvider,
iosProvider: OmhMapsAppleMapsIOSProvider,
});
// Credentials setup must be done before using the map view.
OmhMapsPluginMapboxModule.setPublicToken('<YOUR_PUBLIC_TOKEN>');
const App = () => {
return <OmhMapView />;
}
Interacting with the Mapbox provider follows the same pattern as other providers, as they all implement the same interface. For a comprehensive list of available modules, components, and props, refer to the Quick Start guide.
While using both Azure Maps and Mapbox in a single application, you may face issues with duplicated native dependencies. To resolve this, you have to exclude the duplicated dependency. In app/build.gradle
add the following code:
configurations.all {
exclude group: "org.maplibre.gl", module: "android-sdk-geojson"
}
The below matrix presents the compatibility matrix, denoting support levels for each of the functionalities.
Legend of support levels:
Support level | Symbol |
---|---|
Fully supported | ✅ |
Partially supported | 🟨 |
Not supported | ❌ |
Props | Supported |
---|---|
mapStyle | ✅ |
rotateEnabled | ✅ |
zoomEnabled | ✅ |
myLocationEnabled | ✅ |
onMapReady | ✅ |
onMapLoaded | ✅ |
onCameraIdle | ✅ |
onMyLocationClicked | ✅ |
onCameraMoveStarted | 🟨 |
Comments for partially supported properties:
Property | Comments |
---|---|
onCameraMoveStarted | Described in the OMH Android SDK Plugin Mapbox documentation for setOnCameraMoveStartedListener |
Ref | Supported |
---|---|
getCameraCoordinate | ✅ |
setCameraCoordinate | ✅ |
getProviderName | ✅ |
takeSnapshot | ✅ |
Props | Supported |
---|---|
position | ✅ |
title | ✅ |
clickable | ✅ |
draggable | ✅ |
anchor | 🟨 |
infoWindowAnchor | ✅ |
alpha | ✅ |
snippet | ✅ |
isVisible | ✅ |
isFlat | ✅ |
rotation | ✅ |
backgroundColor | ✅ |
markerZIndex | ❌ |
icon | ✅ |
consumeMarkerClicks | ✅ |
onPress | ✅ |
onDragStart | ✅ |
onDrag | ✅ |
onDragEnd | ✅ |
onInfoWindowPress | ✅ |
onInfoWindowLongPress | ✅ |
onInfoWindowClose | ✅ |
onInfoWindowOpen | ✅ |
Comments for partially supported properties:
Property | Comments |
---|---|
anchor | On Mapbox provider, values are discretized as described in the OMH Android SDK Plugin Mapbox documentation for anchor |
Ref | Supported |
---|---|
showInfoWindow | ✅ |
hideInfoWindow | ✅ |
For advanced usage of OmhMarker
, see the Advanced Usage section.
Props | Supported |
---|---|
points | ✅ |
clickable | ✅ |
color | ✅ |
width | ✅ |
isVisible | ✅ |
zIndex | ❌ |
jointType | ✅ |
pattern | ❌ |
onPolylineClick | ✅ |
consumePolylineClicks | ✅ |
spans | ❌ |
cap | ✅ |
startCap | ❌ |
endCap | ❌ |
Props | Supported |
---|---|
outline | ✅ |
clickable | ✅ |
strokeColor | ✅ |
fillColor | ✅ |
holes | ✅ |
strokeWidth | ✅ |
isVisible | ✅ |
zIndex | ❌ |
strokeJointType | ✅ |
strokePattern | ❌ |
onPolygonClick | ✅ |
consumePolygonClicks | ✅ |
Copyright 2023 Open Mobile Hub
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
FAQs
React Native OMH Maps Mapbox Plugin
The npm package @openmobilehub/maps-plugin-mapbox receives a total of 11 weekly downloads. As such, @openmobilehub/maps-plugin-mapbox popularity was classified as not popular.
We found that @openmobilehub/maps-plugin-mapbox demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.