从Parse导出数据以在Google Map上提供标记

时间:2016-01-21 12:54:03

标签: javascript google-maps-api-3 parse-platform

我试图从Parse数据库中提取lat和long数据,以便在地图上创建标记。数据存储在Parse数据库中,我使用Google Maps JS api v.3

我目前连接到Parse的代码无效;

//Load Markers from Parse, Check (Do we need to create a connection string)

    $.get("parse-connect.js", function (data) {
        $(data).find("marker").each(function () {
             //Get user input values for the marker from the form
              var address   = '<p>'+ $(this).attr('address') +'</p>';
              var type      = $(this).attr('type');
              var point     = new google.maps.LatLng(parseFloat($(this).attr('latitude')),parseFloat($(this).attr('longitude')));

              //call create_marker() function for xml loaded maker
              create_marker(point, name, address, false, false, false, "../img/map-marker-2.png");
        });
    });

"parse-connect.js"只需调用Parse应用程序ID和JS api密钥进行连接。

如果有人有任何建议或在线教程可以帮助我的Id非常感激。

数据库结构简单,有4个字段 - objectID,address,lat,long,image。

0 个答案:

没有答案