/*
|
* @Author: dminyi 1301963064@qq.com
|
* @Date: 2024-08-17 14:41:57
|
* @LastEditors: dminyi 1301963064@qq.com
|
* @LastEditTime: 2024-08-17 16:25:27
|
* @FilePath: \gzDyh\gz-customerSystem\src\views\register\visit\component\map.jsx
|
* @Description: 地图
|
*/
|
import React from 'react';
|
import { Map, Marker, NavigationControl, InfoWindow } from 'react-bmapgl';
|
export default function MapView() {
|
return (
|
<div>
|
<Map center={{ lng: 116.402544, lat: 39.928216 }} zoom="11">
|
<Marker position={{ lng: 116.402544, lat: 39.928216 }} />
|
<NavigationControl />
|
<InfoWindow position={{ lng: 113.27, lat: 23.12 }} text="广州市" title="地标" />
|
</Map>
|
</div>
|
)
|
}
|