AugmentedReality is a fancy component which shows a live feed from the camera, plus objects in certain Geo Locations.
When you create a new instance, you then add a number of PointOfInterest items to it. Each PointOfInterest displays a custom view in a certain Longitude and Latitude.
To use this component, install the Zebble.AugmentedReality nuget package.
It's open source and available on GitHub. Also we welcome any contributions to enhace it.
Example:
new PointOfInterest { View = new Label("place 1"), Location = someGeoLocation },
new PointOfInterest { View = new Label("place 2"), Location = someOtherGeoLocation }
};
this.Add(new AugmentedReality(pointsOfInterest));