react 高德图的使用定位到指定的经纬度react-amap模块的使用!!

需要定位的地方的经纬度获取: 

https://lbs.amap.com/console/show/picker

import React from 'react';
import { connect } from 'dva';
import Map from 'react-amap/lib/map';//需要安装的模块
import Marker from 'react-amap/lib/marker';//需要安装的模块
import Information from "~/components/Information/Information";
import styles from "./Contact.less";
//import styles from './index.less';

@connect(state => ({
  global: state.global,
}))
export default class Contact extends React.Component {

  constructor(props){
    super(props);
    this.ajaxFlag = true;
    this.state = {

    }
  }

  componentDidMount(){

  }

  render(){
    //116.429828,39.84504
    const position = { longitude: 116.429828, latitude: 39.84504}//需要定位的经纬度
   //zoom 需要放大的倍数
  //宋家庄交通枢纽站是指定的添加的小气泡
    return(
      
{/*联系我们*/}

联系我们丨Contact us

{/*地图显示*/}
宋家庄交通枢纽站
{/*调整地图的小气泡*/} {/*
*/} {/*
宋家庄交通枢纽站
*/}
) } }

 请看效果图:

react 高德图的使用定位到指定的经纬度react-amap模块的使用!!_第1张图片

你可能感兴趣的:(前端,react)