Redirect to other apps by Activity Starter

Hello,
I want to know if I can redirect to Google Maps app by using Activity Starter with a defined coordinates.

Action: android.intent.action.VIEW
ActivityClass: com.google.android.maps.MapsActivity
ActivityPackage: com.google.android.apps.maps
DataUri: geo:52.37,4.90?z=20

geo:latitude,longitude - Opens the maps application centered at a lat/lon

geo:latitude,longitude?z=zoom - Opens the maps application centered at a lat/lon and zoomed to the specified level. A zoom level of 1 shows the whole Earth, centered at the given lat, Ing. A zoom level of 2 shows a quarter of the Earth, and so on. The highest zoom level is 23. A larger zoom level will be clamped to 23.

geo:0,0?q=my+street+address - Opens the maps application to the location of a street address.

geo:0,0?q=business+near+city - Opens the maps application and displays the annotated search results.