-
Notifications
You must be signed in to change notification settings - Fork 255
Open
Description
When using a sample code as below
<google-map map="{{map}}" markers="{{markers}}">
<template is="dom-repeat" items="{{locations}}">
<google-map-marker latitude="{{item.latitude}}" longitude="{{item.longitude}}">
</google-map-marker>
</template>
</google-map>
markers changes are not visible outside google-map element, it always returns undefined
Just by adding notify:true within google-map element, markers property becomes available outside google-map element.
markers: {
type: Array,
value: function() { return []; },
notify: true,
readOnly: true
},
Could you please, fix or report this issue to be fixed?
Thanks
Metadata
Metadata
Assignees
Labels
No labels