
Security News
PyPI Expands Trusted Publishing to GitLab Self-Managed as Adoption Passes 25 Percent
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads
@sashathor/expo-leaflet
Advanced tools
A React Native component that uses a WebView to provide a Leaflet map.
A Leaflet map component with no native code
expo install expo-asset expo-file-system react-native-webview
If you want web support you also need to
npm install --save react-measure
Then:
npm install --save expo-leaflet
and import like so
import { ExpoLeaflet } from "expo-leaflet";
let marker = {
id: '1',
coords: { lat: 36.00, lng: -76.00 },
icon: "<div>❤️</div>",
size: [24, 24]
}
After loading, the map expects to receive an array of map layer information objects. A sample object showing a MapBox tile layer is shown below.
let mapLayer = {
baseLayerName: 'OpenStreetMap', // This will be seen in the layer selection control
baseLayerIsChecked: 'true', // If the layer is selected in the layer selection control
layerType: 'TileLayer',
baseLayer: true,
url: `https://api.tiles.mapbox.com/v4/mapbox.streets/{z}/{x}/{y}.png?access_token=${mapboxToken}`,
attribution:
'&copy <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}
let marker = {
id: '1', // The ID attached to the marker. It will be returned when onMarkerClicked is called
position: {
lat: 52.1,
lng: 2.3,
},
// HTML element that will be displayed as the marker. It can also be text or an SVG string.
icon: '<span>🍇</span>',
size: [32, 32],
}
A geometry layer can be added to the may by following the example below:
let mapShapes = [
{
shapeType: 'Circle',
color: "#123123",
id: "1",
center: { lat: 34.225727, lng: -77.94471 },
radius: 2000
}
]
MIT
FAQs
A React Native component that uses a WebView to provide a Leaflet map.
The npm package @sashathor/expo-leaflet receives a total of 0 weekly downloads. As such, @sashathor/expo-leaflet popularity was classified as not popular.
We found that @sashathor/expo-leaflet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.