Exemplo n.º 1
0
        private void ARMode(object sender, GetPOILocationListEventArgs e)
        {
            IMapMenuView mapmenu = GetComponent <MapMenuController>().GETMapMenuView();

            mapmenu.setPOIList(e.poiLocations);
            mapmenu.SpatialExploration();
        }
Exemplo n.º 2
0
    private void OnARButtonLogic()
    {
        setCollectionVisibility(false);
        var EventArgs = new GetPOILocationListEventArgs();

        EventArgs.poiLocations = PoiCoordinatesObjects;
        OnARClick(this, EventArgs);
    }
Exemplo n.º 3
0
        private void SendPOIListToMapMenu(object sender, GetPOILocationListEventArgs e)
        {
            IMapMenuView mapMenuModel = mapMenuController.GETMapMenuView();

            mapMenuModel.setPOIList(e.poiLocations);
        }