question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Strokes are not working

See original GitHub issue

Issue description

It is not possible to draw a stroke for a agm-rectangle even if the values seem to be correct.

Steps to reproduce and a minimal demo of the problem

The code should be self explanatory:

<agm-map [latitude]="centerLat" [longitude]="centerLng">
    <agm-rectangle
        *ngIf="area"
        [strokeColor]="'#FF0000'"
        [strokeOpacity]="1.0"
        [strokeWeight]="'2px'"
        [strokePosition]="'OUTSIDE'"
        [north]="area.northEast.lat"
        [east]="area.northEast.lng"
        [west]="area.southWest.lng"
        [south]="area.southWest.lat">
    </agm-rectangle>
    <agm-marker *ngIf="location" [latitude]="location.lat" [longitude]="location.lng"></agm-marker>
</agm-map>

I have also tried to use an integer for [strokeWeight], tried every [strokePosition] etc. but nothing works. When using a integer for [strokeWeight] the following error occurs:

zone-evergreen.js:172 Uncaught TypeError: h[u] is not a function
    at VX.F (poly.js:54)
    at poly.js:51
    at ZoneDelegate.invokeTask (zone-evergreen.js:391)
    at Zone.runTask (zone-evergreen.js:168)
    at invokeTask (zone-evergreen.js:465)
    at ZoneTask.invoke (zone-evergreen.js:454)
    at timer (zone-evergreen.js:2650)
  | (anonymous) | @ | poly.js:54
  | -- | -- | -- | --|
  | (anonymous) | @ | poly.js:51
  | invokeTask | @ | zone-evergreen.js:391
  | runTask | @ | zone-evergreen.js:168
  | invokeTask | @ | zone-evergreen.js:465
  | ZoneTask.invoke | @ | zone-evergreen.js:454
  | timer | @ | zone-evergreen.js:2650
  | setTimeout (async) |   |  
  | scheduleTask | @ | zone-evergreen.js:2671
  | scheduleTask | @ | zone-evergreen.js:378
  | scheduleTask | @ | zone-evergreen.js:211
  | scheduleMacroTask | @ | zone-evergreen.js:234
  | scheduleMacroTaskWithCurrentZone | @ | zone-evergreen.js:1107
  | (anonymous) | @ | zone-evergreen.js:2686
  | proto.<computed> | @ | zone-evergreen.js:1428
  | _.Xk | @ | common.js:22
  | YX | @ | poly.js:50
  | dY | @ | poly.js:57
  | bY | @ | poly.js:56
  | c.j | @ | poly.js:55
  | _.le | @ | js?v=quarterly&callb…fo-tRaiPlxkjilDs:70
  | loaded | @ | poly.js:101
  | ZoneAwarePromise | @ | zone-evergreen.js:876
  | SX.A | @ | poly.js:101
  | Lk | @ | common.js:26
  | gt | @ | map.js:6
  | (anonymous) | @ | map.js:57
  | Ku | @ | map.js:43
  | (anonymous) | @ | map.js:44
  | invokeTask | @ | zone-evergreen.js:391
  | runTask | @ | zone-evergreen.js:168
  | invokeTask | @ | zone-evergreen.js:465
  | ZoneTask.invoke | @ | zone-evergreen.js:454
  | timer | @ | zone-evergreen.js:2650
  | requestAnimationFrame (async) |   |  
  | scheduleTask | @ | zone-evergreen.js:2671
  | scheduleTask | @ | zone-evergreen.js:378
  | scheduleTask | @ | zone-evergreen.js:211
  | scheduleMacroTask | @ | zone-evergreen.js:234
  | scheduleMacroTaskWithCurrentZone | @ | zone-evergreen.js:1107
  | (anonymous) | @ | zone-evergreen.js:2686
  | proto.<computed> | @ | zone-evergreen.js:1428
  | Ts | @ | map.js:1
  | Pu | @ | map.js:44
  | (anonymous) | @ | map.js:47
  | Iu.ta | @ | map.js:78
  | _.p.ta | @ | map.js:81
  | hv.l | @ | map.js:89
  | (anonymous) | @ | js?v=quarterly&callb…o-tRaiPlxkjilDs:115
  | invoke | @ | zone-evergreen.js:359
  | run | @ | zone-evergreen.js:124
  | (anonymous) | @ | zone-evergreen.js:855
  | invokeTask | @ | zone-evergreen.js:391
  | runTask | @ | zone-evergreen.js:168
  | drainMicroTaskQueue | @ | zone-evergreen.js:559
  | Promise.then (async) |   |  
  | scheduleMicroTask | @ | zone-evergreen.js:542
  | scheduleTask | @ | zone-evergreen.js:381
  | scheduleTask | @ | zone-evergreen.js:211
  | scheduleMicroTask | @ | zone-evergreen.js:231
  | scheduleResolveOrReject | @ | zone-evergreen.js:845
  | resolvePromise | @ | zone-evergreen.js:791
  | (anonymous) | @ | zone-evergreen.js:707
  | (anonymous) | @ | js?v=quarterly&callb…o-tRaiPlxkjilDs:181
  | (anonymous) | @ | js?v=quarterly&callb…fo-tRaiPlxkjilDs:76
  | (anonymous) | @ | js?v=quarterly&callb…o-tRaiPlxkjilDs:181
  | Je | @ | js?v=quarterly&callb…fo-tRaiPlxkjilDs:76
  | Fe.ac | @ | js?v=quarterly&callb…o-tRaiPlxkjilDs:181
  | (anonymous) | @ | map.js:1

Stackblitz Demo

https://stackblitz.com/edit/angular-google-maps-demo-4jyi3f

Current behavior Stroke is not drawn.

Expected/desired behavior Stroke should be drawn 😉

angular-google-maps, Angular, & any other relevant dependency versions

  "dependencies": {
    "@agm/core": "^1.0.0",
    "@angular/animations": "~8.2.5",
    "@angular/common": "~8.2.5",
    "@angular/compiler": "~8.2.5",
    "@angular/core": "~8.2.5",
    "@angular/forms": "~8.2.5",
    "@angular/platform-browser": "~8.2.5",
    "@angular/platform-browser-dynamic": "~8.2.5",
    "@angular/router": "~8.2.5",
    "moment": "^2.24.0",
    "rxjs": "~6.4.0",
    "tslib": "^1.10.0",
    "zone.js": "~0.9.1"
  },

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:7

github_iconTop GitHub Comments

2reactions
dockleryxkcommented, Sep 24, 2019

This works for me, I know it’s a circle but maybe this will help

<agm-circle *ngFor="let marker of circles; trackBy: trackByFn"
            [fillColor]="'#000'"
            [fillOpacity]="0.2"
            [strokeColor]="'#000'"
            [strokeOpacity]="0.2"
            [strokeWeight]="5"
            [strokePosition]="0"
            [radius]="50"
            [latitude]="marker.latitude"
            [longitude]="marker.longitude">
</agm-circle>
0reactions
ghostcommented, Jul 7, 2020

should be fixed with #1833

Read more comments on GitHub >

github_iconTop Results From Across the Web

Silent Stroke: What You Need to Know - WebMD
If you have a silent stroke, you probably won't know it unless you happen to have a brain scan and the damage shows...
Read more >
Communication problems - Stroke Association
Communication problems are very common after a stroke. Around one-third of stroke survivors have problems with speaking, reading, writing and understanding ...
Read more >
Stroke - Symptoms and causes - Mayo Clinic
Paralysis or numbness of the face, arm or leg on one side of the body. Problems seeing in one or both eyes, trouble...
Read more >
A Neurosurgeon's Guide to Stroke Symptoms, Treatment and ...
Getting 30 minutes of moderate exercise, five days a week can help reduce your risk of stroke. Check with your doctor first before...
Read more >
Arm Care After a Stroke | Johns Hopkins Medicine
Many people who have a stroke are left with problems with one of their arms. Proper arm care after a stroke can help...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found