December 2018
Intermediate to advanced
416 pages
10h 30m
English
Before we can visualize the data on the map, we need to prepare the data. The first thing we will do is create a new model that we can use for the prepared data. Let's set this up by going through the following steps:
namespace MeTracker.Models{ public class Point { public Location Location { get; set; } public int Count { get; set; } = 1; public Xamarin.Forms.Color Heat { get; set; } }}
The MainViewModel will store the locations that we will find later on. Let's add a property for storing the Points by going through the following ...