• 谷歌地图


    谷歌地图的api: https://developers.google.com/maps/documentation/javascript/

    init () {
    let _this = this
    _this.center.LATITUDE = parseFloat(_this.center.LATITUDE)
    _this.center.LONGITUDE = parseFloat(_this.center.LONGITUDE)
    this.map = new google.maps.Map(document.getElementById(this.mapId), {
    zoom: this.zoom,
    center: new google.maps.LatLng(_this.center.LATITUDE,_this.center.LONGITUDE),
    disableDefaultUI:true,
    zoomControl:true,
    mapTypeControl:true,
    streetViewControl:false,
    });
    }
    initMark () {
    let _this = this
    let infowindow = new google.maps.InfoWindow();
    this.position.forEach(item => {
    item.LATITUDE = parseFloat(item.LATITUDE)
    item.LONGITUDE = parseFloat(item.LONGITUDE)
    let latLng = new google.maps.LatLng(item.LATITUDE,item.LONGITUDE);
    let marker = new google.maps.Marker({
    position: latLng,
    map: _this.map,
    title: item.NAME + ':' + parseFloat(item.LATITUDE) + ',' + parseFloat(item.LONGITUDE)
    });
    google.maps.event.addListener(this.map,'click', (e) => {
        // 这个是暂时解决点击非标记地点,不显示信息弹窗
    setTimeout(() => {
    let info = document.getElementsByClassName('gm-style-iw')[0].parentNode.style.display = 'none'
    }, 10)
    infowindow.close();
    return false
    });
    marker.addListener('click', (e) => {
    _this.map.setZoom(14);
    _this.map.setCenter(marker.getPosition());
    });

    })
    }
    // 关于聚类的
    initCountryHandler () {
    let labels = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    let markers = this.position.map(function(location, i) {
    let latLng = new google.maps.LatLng(location.LATITUDE,location.LONGITUDE);
    return new google.maps.Marker({
    position: latLng,
    label: labels[i % labels.length],
    title: location.NAME
    });
    });
    let markerCluster = new MarkerClusterer(this.map, markers,
    {imagePath: 'http://www.wedive.com:9999/external/img/m'}
    );
    }
    你的关注,就是我的坚持!
  • 相关阅读:
    学习笔记180—回归系数与相关系数的关系和区别
    学习笔记178—精品书籍推荐榜
    学习笔记177—PPT生成的图片设置成特定像素级的图片【四种方法】
    学习笔记176—PS 获得一个椭圆的某个部分
    shell:利用sed删除文件中的匹配行
    常用壁纸
    Linux下编译C文件:Hello World
    属性访问、特性和修饰符
    介绍Python基本特殊方法
    kafka配置
  • 原文地址:https://www.cnblogs.com/langqq/p/9106428.html
Copyright © 2020-2023  润新知