I am trying to render a Google Map using a native view. According to the documentation (https://support.sugarcrm.com/Documentation/Mobile_Solutions/Mobile_SDK/Mobile_SDK_Quick_Start_Guide/#Integrating_a_Cordova_Plugin), this should be a straightforward process.
Steps to reproduce the problem:
Create new app using SugarCRM mobile SDK version 6.0.0.431-1.2.0-1
Install cordova-plugin-googlemaps using command `../cordova plugins add cordova-plugin-googlemaps --variable API_KEY_FOR_ANDROID="..."` (I use API key that is not limited to any domain)
Create new custom view based on the Nomad view
In the template add a single div with id `map_canvas`, set `height` and `width` to `400px`
In `onAfterRender` event handler initialize map using this code:
var div = document.getElementById("map_canvas");
map = plugin.google.maps.Map.getMap(div);Build android app using debug scheme: `./sdk build -p android`
Run created application on real device or in AVD;
Navigate to the newly created view;
Nothing happens.
What I already know:
API key is correct, I created a pure Cordova app, I added the same view (single div, and initialization fired upon ready) and it works as expected.
Plugin is installed correctly, example from https://github.com/mapsplugin/cordova-plugin-googlemaps-doc/blob/master/v2.0.0/class/Environment/getLicenseInfo/README.md works correctly
Could you help me?