Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <template>
  2. ...
  3. <gmap-custom-marker
  4. :id="'mark_' + index"
  5. :title="'Marker Title'"
  6. :marker="get_clean_lat_lng (0,0)"
  7. :clickable="true"
  8. class="g_marker"
  9. alignment="center"
  10. :z-index="999"
  11. >
  12. <map-pointer id="'point_' + index" :icon="'arrow'" :color="'red'" :tool-text="''" />
  13. </gmap-custom-marker>
  14. ...
  15. </template>
  16.  
  17.  
  18. <script>
  19. ...
  20. mounted() {
  21. this.$refs.baseMap.$mapPromise.then(map => {
  22. console.log(document.getElementById('mark_' + index)) // null
  23. })
  24. },
  25. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement