public void CreateAnnotation(double latitude, double longitude)
    {
        Coordinates location = new Coordinates(latitude, longitude);

        mapWrapper.SetMarkerInMap(location);
        Debug.Log("Llamado desde MapWrapperBehaviour");
    }
示例#2
0
 public void loadAnnotations()
 {
     getReports();
     foreach (FormData report in reports)
     {
         mapWrapper.SetMarkerInMap(new Coordinates(report.annotation.x, report.annotation.y));
     }
 }
 public void TestPutMarkerOnMap()
 {
     mapWrapper.SetMarkerInMap(markerLocation);
     Assert.AreEqual(1, mapWrapper.MarkersCount);
 }