How to draw polygon on angular google maps using @agm-core?

巧了我就是萌 提交于 2020-04-14 07:38:30

问题


In my application, I use Angular Google Maps (AGM) to build a map. How can I draw a polygon on it? I followed the solution described in https://stackblitz.com/edit/agm-polygon but some directives are missing. How can I enable the drawing manager on the AGM map and draw polygons like in the example?

This is the import in the app.module:

AgmCoreModule.forRoot({
      apiKey: 'key',      
      language: localStorage && localStorage.defaultLang || 'el',
      libraries: ['places', 'drawing', 'geometry']
    })

回答1:


You most likely getting errors related with agm-drawing-manager component, right? It appears agm-drawing-manager directive which is utilized in the provided demo is no longer part of angular-google-maps library (1.0.0-beta.5 version) and thatäs the reason why those errors occur.

To enable Google Maps drawing tools the following solution could be considered (adapted from official example):

app.component.html

<agm-map [latitude]="center.lat" [longitude]="center.lng" (mapReady)="onMapReady($event)"> 
</agm-map> 

app.component.ts

import { Component } from "@angular/core";
declare const google: any;

@Component({
  selector: "app-map",
  templateUrl: "./app.component.html",
  styleUrls: ["./app.component.css"]
})
export class AppComponent {
  center: any = {
    lat: 33.5362475,
    lng: -111.9267386
  };

  onMapReady(map) {
    this.initDrawingManager(map);
  }

  initDrawingManager(map: any) {
    const options = {
      drawingControl: true,
      drawingControlOptions: {
        drawingModes: ["polygon"]
      },
      polygonOptions: {
        draggable: true,
        editable: true
      },
      drawingMode: google.maps.drawing.OverlayType.POLYGON
    };

    const drawingManager = new google.maps.drawing.DrawingManager(options);
    drawingManager.setMap(map);
  }
}

It could be further improved by introducing, for example, a separate directive for google.maps.drawing.DrawingManager class

Prerequisites

In app.module.ts don't forget to load drawing package via AgmCoreModule module:

AgmCoreModule.forRoot({
  apiKey: "--YOUR-GOOGLE_MAPS_KEY-GOES-HERE--",
  libraries: ['drawing']
})

Here is a demo for your reference



来源:https://stackoverflow.com/questions/54650666/how-to-draw-polygon-on-angular-google-maps-using-agm-core

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!