我正在使用react-native-maps
,但是我遇到了一个问题,经过大量的无人查阅,我不得不在这里提问。
我正尝试将“自定义标记”用于地图中的标记,如下图所示
在搜索时发现需要使用Custom Marker来完成制造商的设计,然后我创建了Custom Marker组件
import React, { Component } from "react";
import { View } from "react-native";
import {
Text,
Left,
Right,
Thumbnail,
} from "native-base";
const defaultEmployeeLogo = require("../../../assets/defualtEmployee.png");
class CustomMarker extends Component {
render() {
return (
<View style={{ flexDirection: 'row', width: 140, height: 60,
borderRadius: 70, backgroundColor: 'orange' }}>
<Left>
<Thumbnail source={defaultEmployeeLogo} />
</Left>
<Right>
<Text style={{
color: '#fef',
fontSize: 13,
paddingBottom: 2,
fontFamily: 'Roboto',
alignItems: 'center',
paddingRight: 10
}}>Mohammad</Text>
</Right></View >);
}
}
export default CustomMarker;
当我仅使用CustomMarker.js类时,它可以正常工作并显示图像,但是当我将其用作标记自定义视图时,它不显示图像
我不知道为什么它无法使用android中的Custom Marker渲染图像。 这是我使用地图,标记和自定义标记类的代码
return (
<View style={styles.map_container}>
<MapView
style={styles.map}
customMapStyle={customrMapStyle}
region={{
latitude: this.state.region.latitude,
longitude: this.state.region.longitude,
latitudeDelta: 0.4,
longitudeDelta: 0.41,
}} >
{
coordinationData.map(function (marker, i) {
let lat = marker.latLang.latitude;
let lang = marker.latLang.longitude;
<MapView.Marker
key={i}
coordinate={
{
latitude: lat,
longitude: lang,
latitudeDelta: 0.4,
longitudeDelta: 0.41
}
}
title={marker.title}
description={marker.description}
>
<CustomMarker />
</MapView.Marker>
})}
</MapView>
</View>
将提供任何帮助。
答案 0 :(得分:3)
我的问题现在已经解决。
希望您的问题能得到解决。
import React, {Component} from 'react';
import {ImageBackground, Text} from 'react-native';
import {Marker} from 'react-native-maps';
export default class CustomMarker extends Component {
state = {
initialRender: true
}
render() {
return (
<Marker
//...
>
<ImageBackground
source={require('../assets/cluster3_mobile.png')}>
// *** These lines are very important ***
onLoad={() => this.forceUpdate()}
onLayout={() => this.setState({initialRender: false})}
key={`${this.state.initialRender}`}
>
// **** This line is very very important ****
<Text style={{width: 0, height: 0}}>{Math.random()}</Text>
</ImageBackground>
</Marker>
);
}
}
答案 1 :(得分:2)
我遇到了同样的问题。
第一次加载应用程序时,不会显示图像,但稍后加载时,此问题已解决并显示图像。
在加载图像之后,只需调用this.forceUpdate()
const defaultEmployeeLogo = require("../../../assets/defualtEmployee.png");
<Image source={defaultEmployeeLogo} onLoad={() => this.forceUpdate()}>
<Text style={{width:0, height:0}}>{Math.random()}</Text>
</Image>
您可以跟踪以下内容:
https://github.com/react-community/react-native-maps/issues/924
答案 2 :(得分:2)
为此https://github.com/react-native-community/react-native-svg使用SVG
<Marker
coordinate={{
longitude: lang,
latitude: lat,
}}
>
<View style={{
flexDirection: 'row', width: 100, height: 30,
backgroundColor: 'orange'
}}>
<Svg
width={40} height={30}>
<Image
href={url}
width={40}
height={30}
/>
</Svg>
<View
style={{
flexDirection: 'column'
}}
>
<Text
style={{
marginLeft: 2,
fontSize: 9,
color: '#ffffff',
fontWeight: 'bold',
textDecorationLine: 'underline'
}}
>{marker.title}</Text>
<Text
style={{
marginLeft: 2,
fontSize: 9,
color: '#ffffff',
fontWeight: 'bold',
textDecorationLine: 'underline'
}}
>{marker.description}</Text>
</View>
</View>
</Marker>
答案 3 :(得分:2)
@Mahdi Bashirpour解决方案为我工作。只是升级到答案之上。
如果我们从“ react-native-svg”导入“图片”,其他图片就会停止工作
我的解决方案在下面。
import {Image} from 'react-native'; // for other images in our render method.
import { Image as Imagesvg } from 'react-native-svg';
<Marker
coordinate={marker.latlng}
title={marker.title}
>
<View style={{ height: 90, width: 90, backgroundColor: 'orange' }}>
<Svg width={90} height={90}}>
<Imagesvg href={marker_g} width={90} height={90} /> // Local Images
<Imagesvg href={{uri:url}} width={90} height={90} /> //Server images
</Svg>
</View>
</Marker>
使用“ Imagesvg”作为标记图像。 它在android 7和8上对我有效。React native版本'0.55.3'
答案 4 :(得分:1)
这是另一个例子
class PinMarker extends Component {
state = {
initialRender: true
}
render() {
return (
<MapView.Marker coordinate={coordinate}>
<Image
source={...}
onLayout={() => this.setState({ initialRender: false })}
key={`${this.state.initialRender}`}
/>
</MapView.Marker>
)
}
}
答案 5 :(得分:1)
我遇到了同样的问题,from github post
使用下面的(MapView,Image)模式第一次加载问题仍然会发生
<MapView.Marker>
<Image source={img_marker} />
</MapView.Marker>
因此在以下解决方案中采用:技巧是在redux中保存当前选定的标记id
class Map extends React.Component {
render() {
let {region, markers , markerClick} = this.props;
const normalMarkerImage = require('../../images/normal_marker.png');
const selectedMarkerImage = require('../../images/selected_marker.png');
return !isObjectEmpty(region) && !isObjectEmpty(markers) ? (
<MapView
style={styles.map}
showsUserLocation={true}
followUserLocation={true}
zoomEnabled={true}
region={region}
paddingAdjustmentBehavior={'automatic'}
showsIndoors={true}
showsIndoorLevelPicker={false}
showsTraffic={false}
toolbarEnabled={false}
loadingEnabled={true}
showsMyLocationButton={true}>
{markers && markers.length > 0
? markers.map((marker, i) => (
<MapView.Marker
coordinate={{
longitude: marker.loc.coordinates[0],
latitude: marker.loc.coordinates[1],
}}
key={`marker-${i}`}
style={{height: 20, width: 20}}
onPress={e => markerClick(e, marker)}
image={
this.props.selectedMarker === marker._id
? selectedMarkerImage
: normalMarkerImage
}
/>
))
: null}
</MapView>
) : null;
}
}
组件功能
markerClick = async (event, data) => {
this.props.dispatch(
setMarkerIconInRedux(this.state.popover.currentData._id)
);
};
操作
export const setMarkerIconInRedux = where => {
return {
type: 'SET_MARKER_ICON',
_id: where,
};
};
Redux
export const currentSelectedMarker = (state = {selectedMarker: ''}, action) =>
{
if (action.type === 'SET_MARKER_ICON') {
return {selectedMarker: action._id};
} else if (action.type === 'REMOVE_MARKER_ICON') {
return {selectedMarker: ''};
} else {
return state;
}
};
答案 6 :(得分:1)
我通过用16位伽玛整数Image替换为8位伽玛整数Image解决了这个问题。可以在Gimp中完成,一旦导出图像,请选择8bpc RGBA。
答案 7 :(得分:1)
自2019年10月起,图像可以显示在标记中,以及tracksViewChanges设置为true的情况。我使用FastImage,但是通常的想法是在图像加载后立即将tracksViewChanges设置为true,然后将其设置为false,这样就不会出现任何性能问题。
export const UserMapPin = props => {
const [trackView, setTrackView] = useState(true);
function changeTrackView() {
setTrackView(false);
}
return (
<Marker
tracksViewChanges={trackView}
coordinate={props.coordinates}>
<View style={styles.imageIconContainer}>
<FastImage
onLoadEnd={changeTrackView}
style={styles.someImageStyle}
source={{
uri: props.imageURI,
}}
resizeMode={FastImage.resizeMode.cover}
/>
</View>
</Marker>
);
};
答案 8 :(得分:0)
就我而言,问题仅在于远程图像,因此我可以通过黑客解决。
我只是将一个版本的宽度为零的Image放在Text Component内,将一个版本的Text Component放在Text Component之外。突然一切都解决了。
<Image
source={{ uri: "https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__340.jpg" }}
style={styles.companyLogoMarker}
resizeMode="cover"
/>
<Text style={styles.markerText}>
{names?.[0]?.value}
<Image
source={{ uri: "https://cdn.pixabay.com/photo/2015/04/23/22/00/tree-736885__340.jpg" }}
style={{width: 0, height: 0}}
resizeMode="cover"
/>
</Text>
撰写本文答案时,这是[react native maps][1]
中的错误,自2017年以来未解决
答案 9 :(得分:0)
在<View>
内添加自定义标记组件
例如<View> your marker custom view </View>
。也许它将解决您的问题。