public void TestMapSetupsCurrentCamera()
        {
            Camera currentCamera = new Camera();

            mapWrapper.SetCurrentCamera(currentCamera);
            Assert.IsNotNull(mapWrapper.MapImplementation.CurrentCamera);
        }
 public void SetupMapInstance()
 {
     mapWrapper.SetCurrentCamera(Camera.main);
     mapWrapper.SetCurrentZoom(15.0f);
     mapWrapper.createVirtualEarthLayer("Ag-ML2n_NjUqTCNOJyd9Yyr-GRfEWVmY_yboAe3A3aUL2JrE1d9er914Tfs9kgrp");
     mapWrapper.setOriginCoordinates(new Coordinates(-74.084046, 4.638194));
     mapWrapper.EnableUseLocation();
     mapWrapper.addInputDelegateKeyboard();
     mapWrapper.EnableInputs();
 }