Socket
Book a DemoInstallSign in
Socket

@bam.tech/react-native-component-map-clustering

Package Overview
Dependencies
Maintainers
11
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bam.tech/react-native-component-map-clustering

## Installation

latest
Source
npmnpm
Version
1.1.1
Version published
Maintainers
11
Created
Source

Map with clustering

Installation

yarn add @bam.tech/react-native-component-map-clustering

Dependencies:

  • react-native-maps > 0.21

Usage

Children

⚠ For each custom marker, add the following props:

  • id
  • coordinate : { longitude, latitude }

Ref

Ref methods from react-native-maps such as animateToRegion()
Extra methods
MethodTypeNote
zoomOnMarker({latitude, longitude}, { top, bottom, right, left }) => voidZoom on a marker & place it on the screen. left, right, top, bottom are in between 0 & 1. They represent out far to the right, left, top, or bottom to place the marker.

Props

Props from the react-native-maps API

Other props

PropTypeDefaultNote
clusteringbooleanFalse(Optional) When true enables clustering of Markers.
renderCluster(Cluster) => React.NodeRenders default clusters on Map(Optional) Render your custom clusters.
onPressCluster(Cluster) => voidonPress not handled(Optional) Handle onPress on default clusters.
setRef`(React ref) => void(Optional) Get the MapView ref

Types

type Cluster {
  properties : {
    cluster: Boolean
    cluster_id: Number
    point_count: Number
    point_count_abbreviated: String
  }
  geometry: {
    coordinates: [(longitude), (latitude)]
  }
}

FAQs

Package last updated on 18 Sep 2018

Did you know?

Socket

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.

Install

Related posts