在 React Native 中,我正在使用 react-native-maps 开发一个示例应用程序。它工作正常,但我没有发现:如何将 RouteMap 从当前位置显示到另一个地址或位置?
这是我的代码:
<MapView
ref='map'
style={styles.map}
region={this.state.mapRegion}
showsUserLocation={true}
followUserLocation={true}
zoomEnabled={true}
pitchEnabled={true}
showsCompass={true}
showsBuildings={true}
showsTraffic={true}
showsIndoors={true}
onRegionChange={this.onRegionChange.bind(this)}
onPress={this.onMapPress.bind(this)}
>
{this.state.markers.map(marker => (
<MapView.Marker
coordinate={{
latitude: marker.Latitude || this.state.lastLat || region.latitude,
longitude: marker.Longitude || this.state.lastLong || region.longitude
}}
image = {
marker.EmergencyService == true ?(
require('./Imgs/emergencyService.png')):
(require('./Imgs/regularService.png'))
}
onCalloutPress={() => this.bookDoctorsAppointment(marker)}
>
<MyCustomMarkerView marker={marker} navigator={this.props.navigator}/>
</MapView.Marker>
))}
</MapView>
实际上,在这段代码中,我显示了一些标记列表,但我不需要所有标记路线图......我只想要当前位置的一些特定标记。
在这里,我附上了我想要的图像: