我目前正在使用谷歌地图react进行谷歌地图项目,遇到了一个问题。我正在使用道具来获取我的标记(lat,lng,标记图标(的值,但我在更改标记的大小时遇到了问题。我留下了一个巨大的标记,无法改变这一点。我试着把这个尺寸当作道具,但没有成功
提前感谢您的帮助。
这是我的代码:
MAPS.JS
render() {
/*--- initial code that i passed into props*/
/*var icon = {
url: "https://loc8tor.co.uk/wp-content/uploads/2015/08/stencil.png", // url
scaledSize: new this.props.google.maps.Size(90, 42), // scaled size
*/
}
return (
<div className="map-container">
<Map
google={this.props.google}
className={"map"}
zoom={4}
initialCenter={this.props.center}
>
{this.props.places.map((place, i) => {
//pass an array of markers as a child to the GoogleMap component and map over them
return (
<Marker
onClick={this.onMarkerClick}
key={place.id}
place_={place}
position={{ lat: place.lat, lng: place.lng }}
icon={place.url}
//Size={place.scaledSize} : Not working
/>
);
})}
<InfoWindowEx
marker={this.state.activeMarker}
visible={this.state.showingInfoWindow}
>
<div>
<h3>{this.state.selectedPlace.name}</h3>
<button
type="button"
onClick={this.showDetails.bind(this, this.state.selectedPlace)}
>
Show details
</button>
</div>
</InfoWindowEx>
</Map>
</div>
);
INDEX.JS
import React from "react";
import ReactDOM from "react-dom";
import Map from "./Map";
import "./styles.css";
const data = [
{
name: "Hello",
title: "Sydney",
lat: -33.847927,
lng: 150.6517938,
id: 1,
color: "blue",
url: "https://loc8tor.co.uk/wp-content/uploads/2015/08/stencil.png",
// scaledSize: Size(90, 42), // scaled size - Not working//
},
{
根据库的文档和Google的文档,必须将scaledSize
参数与url
参数一起添加到标记的icon
属性中。
因此,如果这个对象包含两个参数:
var icon = {
url: "https://loc8tor.co.uk/wp-content/uploads/2015/08/stencil.png",
scaledSize: new this.props.google.maps.Size(90, 42)
};
将它们作为一个对象一起传递到标记的icon
属性,如下所示:
<Marker
onClick={this.onMarkerClick}
key={place.id}
place_={place}
position={{ lat: place.lat, lng: place.lng }}
icon={icon}
/>
我已经用上面的更改测试了您的代码,并且您的蓝色标记以指定的大小正确显示。希望这对你有所帮助!