You can switch from a local address type c: users etc.
example
Intent mapIntent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse("geo:0,0?q=http://www.example.com/dynamic.kml");
mapIntent.setData(uri);
startActivity(Intent.createChooser(mapIntent, "Sample Map"));

