コード例 #1
0
 public void MoveToLocation(VenueLocation loc)
 {
     customMap.MoveToRegion(new MapSpan(new Position(loc.Lat, loc.Long), 0.002, 0.001));
     customMap.Pins.Add(new Pin {
         Type = PinType.Place, Label = loc.Name, Position = new Position(loc.Lat, loc.Long)
     });
 }
コード例 #2
0
        public VenueLocation GetVenueByName(string text)
        {
            var venues = db.All <VenueData>().ToList()[0];
            var Venues = venues.Venues;
            var ve     = new VenueLocation();

            for (int i = 0; i < Venues.Count; i++)
            {
                var v = new NameRemover(Venues[i].Name).Process();
                if (v == text)
                {
                    ve = Venues[i];
                }
            }
            return(ve);
        }
コード例 #3
0
        /// <summary>
        /// Process this GeoJSON data into JSON.
        /// Disclaimer Realm does not support storing of Point data structures
        ///
        /// </summary>
        public void Process()
        {
            var list     = data.Data.Split('\n');
            var VList    = new List <VenueLocation>();
            var readCord = false;
            var tempLoc  = new VenueLocation();

            for (int i = 0; i < list.Length; i++)
            {
                if (list[i].Contains("properties"))
                {
                    i++;
                    tempLoc.Name        = new CommaRemover(list[i++]).RemoveComma();
                    tempLoc.Description = list[i].Trim();
                    continue;
                }
                if (list[i].Contains("coordinates"))
                {
                    var removecommaLat  = new CommaRemover(list[++i]).RemoveComma();
                    var removecommaLong = new CommaRemover(list[++i]).RemoveComma();
                    tempLoc.Lat  = double.Parse(removecommaLat, CultureInfo.InvariantCulture);
                    tempLoc.Long = double.Parse(removecommaLong, CultureInfo.InvariantCulture);
                    readCord     = true;
                    var temp = tempLoc.Lat;
                    tempLoc.Lat  = tempLoc.Long;
                    tempLoc.Long = temp;
                    continue;
                }
                if (readCord)
                {
                    VList.Add(tempLoc);
                    readCord = false;
                    tempLoc  = new VenueLocation();
                }
            }
            for (int i = 0; i < LocationsWithAssociatedHostedSubjects.Count; i++)
            {
                var casted = LocationsWithAssociatedHostedSubjects[i];
                for (int a = 0; a < VList.Count; a++)
                {
                    var  withoutName    = new NameRemover(VList[a].Name).Process();
                    bool foundSomething = false;
                    var  test           = casted.Name.Split(new char[] { ' ' });
                    var  test2          = withoutName.Split(new char[] { ' ' });
                    for (int b = 0; b < test.Length; b++)
                    {
                        for (int c = 0; c < test2.Length; c++)
                        {
                            var test3 = test[b];
                            foundSomething = true;
                            if (test[b].Equals(test2[c]))
                            {
                                for (int d = 0; d < casted.VenueSubjects.Count; d++)
                                {
                                    VList[a].VenueSubjects.Add(casted.VenueSubjects[d]);
                                }
                                break;
                            }
                        }
                        if (foundSomething)
                        {
                            break;
                        }
                    }
                }
            }

            db.StoreVenueLocations(VList);
        }