Center map between two points WinRT
问题 im trying to center the windows phone map between two points, adjusting center and zoom to make that points visible at the same time. Im Android and IOS there are functions to do it, as example this is how to do it in Android: LatLngBounds.Builder builder = new LatLngBounds.Builder(); builder.include(myPos.getPosition()); builder.include(defaultPos.getPosition()); mapa.animateCamera(CameraUpdateFactory.newLatLngBounds(builder.build(), 50)); How can i do the same in WinRT? Thanks in advance.