Conectar markers - backbone con Google maps



   AUTOR PREGUNTA

Publicado 17 julio 2014 - 05:52

Trabajando con Backbone.js y Google maps cómo puedo conectar los markers a la vista del mapa?


¿Tienes la misma pregunta? Yo también

 

Publicado 17 julio 2014 - 20:50

Debes crear una vista en Backbone:

initialize: function (opts) {
_.bindAll(this);
this.markers = opts.markers;
this.markers.on('change', this.render); },
render: function () { // crea o actualiza el mapa}

Y por último inicializa la vista:

var markers = new MyApp.MarkerCollection(),
view = new MyApp.MapView({ markers: markers });

   AUTOR PREGUNTA

Publicado 18 julio 2014 - 04:19

Gracias Nieves