A container component for map annotations. Place LabeledAnnotationIcon components inside this layer to display them on the map. Multiple annotation layers can be added to a MapView if needed.
<MapView map={mapLoadResult.map}> <CoordinateAnnotationLayer> <LabeledAnnotationIcon coordinates={{ latitude: 52.8952, longitude: -1.8431 }} icon={require('./marker.png')} title="Point of Interest" /> </CoordinateAnnotationLayer></MapView> Copy
<MapView map={mapLoadResult.map}> <CoordinateAnnotationLayer> <LabeledAnnotationIcon coordinates={{ latitude: 52.8952, longitude: -1.8431 }} icon={require('./marker.png')} title="Point of Interest" /> </CoordinateAnnotationLayer></MapView>
A container component for map annotations. Place LabeledAnnotationIcon components inside this layer to display them on the map. Multiple annotation layers can be added to a MapView if needed.