2

I am building an Blackberry app and now having this strange problem that a map is not showing up.

mapView = MapFactory.getInstance().generateRichMapField();
mapView.getAction().setCentreLatLon(55.604981, 13.003822 );
mapView.getAction().setZoom(12);
add(mapView);

I have checked permissions, I'm requesting INTERNET, WIFI, RECORDING. Did I forget something?

Mike Bevz
  • 1,268
  • 1
  • 14
  • 20

1 Answers1

2

Can't be sure without seeing your MapFactory class but in order to download the BB maps (if that is what you are trying to use) the phone also needs to be registered (BIS/BES activated)... You can find more info in this thread.

Tamar
  • 1,958
  • 14
  • 25