如何在text-google-maps中嵌入textview?我已经成功创建了一个Google地图页面,使用react-google-maps api作为响应。这就是我插入标记并使用折线链接标记的方式。
import React from "react";
import {
withScriptjs,
withGoogleMap,
GoogleMap,
Marker,
Polyline
} from "react-google-maps";
const pathCoordinates = [
{ lat: 1.322459, lng: 103.853972 },
{ lat: 1.39227, lng: 103.752 }
];
const CustomSkinMap = withScriptjs(
withGoogleMap(props => (
<GoogleMap
defaultZoom={12}
defaultCenter={{ lat: 1.322459, lng: 103.853972 }}
defaultOptions={{
scrollwheel: false,
zoomControl: true,
styles: [
{
featureType: "water",
stylers: [
{ saturation: 43 },
{ lightness: -11 },
{ hue: "#0088ff" }
]
},
{
featureType: "road",
elementType: "geometry.fill",
stylers: [
{ hue: "#ff0000" },
{ saturation: -100 },
{ lightness: 99 }
]
},
{
featureType: "road",
elementType: "geometry.stroke",
stylers: [{ color: "#808080" }, { lightness: 54 }]
},
{
featureType: "landscape.man_made",
elementType: "geometry.fill",
stylers: [{ color: "#ece2d9" }]
},
{
featureType: "poi.park",
elementType: "geometry.fill",
stylers: [{ color: "#ccdca1" }]
},
{
featureType: "road",
elementType: "labels.text.fill",
stylers: [{ color: "#767676" }]
},
{
featureType: "road",
elementType: "labels.text.stroke",
stylers: [{ color: "#ffffff" }]
},
{ featureType: "poi", stylers: [{ visibility: "off" }] },
{
featureType: "landscape.natural",
elementType: "geometry.fill",
stylers: [{ visibility: "on" }, { color: "#b8cb93" }]
},
{ featureType: "poi.park", stylers: [{ visibility: "on" }] },
{
featureType: "poi.sports_complex",
stylers: [{ visibility: "on" }]
},
{ featureType: "poi.medical", stylers: [{ visibility: "on" }] },
{
featureType: "poi.business",
stylers: [{ visibility: "simplified" }]
}
]
}}
>
<Marker label= {"1"} position={{ lat: 1.322459, lng: 103.853972 }} />
<Marker label= {"2"} position={{ lat: 1.39227, lng: 103.752 }} />
<Polyline
path={pathCoordinates}
geodesic={true}
options={{
strokeColor: "#ff2527",
strokeOpacity: 0.75,
strokeWeight: 2
}}
/>
</GoogleMap>
))
);
function Maps({ ...props }) {
return (
<CustomSkinMap
googleMapURL="https://maps.googleapis.com/maps/api/js?key=AIzaSyC4R6AN7SmujjPUIGKdyao2Kqitzr1kiRg"
loadingElement={<div style={{ height: `100%` }} />}
containerElement={<div style={{ height: `100vh` }} />}
mapElement={<div style={{ height: `100%` }} />}
/>
);
}
export default Maps;
但是,我不知道如何在此Google地图中嵌入textview。我想添加一个文本视图,以允许用户选择日期,然后从数据库中读取数据。
答案 0 :(得分:0)
我找到了解决方案,只需创建一个CSS文件,然后将z-index设置为100,然后将top:70px右:20px宽度:220px设置为即可。然后,文本视图将显示在地图的右上角。