Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issues with Dom-repeat and Map Markers #356

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Mar 5, 2017

  1. Dynamic updates to markers array using dom-repeat

    The current version is not able to handle changes to array of markers added via dom-repeat template.
    
    Updated the listener to observe 'iron-items-changed' event at line 534.
    The listener is now able to update all the markers when there is a change in items array.
    Please note that this code does not update the info window content.
    The following code now works correctly.
    
    google-map map="{{map}}" api-key=xxxx latitude="[[lat]]" longitude="[[lon]]">
            <template is="dom-repeat" items="[[array]]">
              <google-map-marker map="[[map]]" latitude="[[item.lat]]" longitude="[[item.lon]]" title="[[item.title]]" ></google-map-marker>
            </template>
          </google-map>
    msamitahir authored Mar 5, 2017
    Configuration menu
    Copy the full SHA
    79c9d84 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2017

  1. Dynamic update to infowindow in dom-repeat

    Currently when using dom-repeat template, the info windows are not updated when the item array is updated.
    This change to mutation observer allows the info window content to update automatically.
    msamitahir authored Mar 6, 2017
    Configuration menu
    Copy the full SHA
    3e30913 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2017

  1. Configuration menu
    Copy the full SHA
    da92b50 View commit details
    Browse the repository at this point in the history