This sample demonstrates how to integrate a few popular mapping services into a BlackBerry WebWorks application for BlackBerry 10.
The sample code for this application is Open Source under the Apache 2.0 License.
Applies To
Author(s)
Dependencies
-
jquery-1.7.2.js is dual licensed under the MIT or GPL Version 2 licenses.
-
[bbUI.js] (https://github.com/blackberry/bbUI.js) is [licensed] (https://github.com/blackberry/bbUI.js/blob/master/LICENSE) under the Apache 2.0 license.
Icons
Icons used here are from http://subway.pixle.pl/rim are licensed under the CC-BY-3.0 license. This is a subset of the Subway icons available at http://subway.pixle.pl/
Demo Video
Check-out the demo video on the BlackBerry DevTube Channel.
To contribute code to this repository you must be signed up as an official contributor.
***To use this sample, you must sign up for API keys from the service you wish to use. The links below will point you in the right direction. ***
Google Maps
Bing Maps
Leaflet via CloudMade
OpenLayers
Open js/maps.js and enter your API Keys in the proper place
function initApp() {
APIKey = {
'bing': '<my bing key>',
'leaflet': '<my leafleft/cloudmade key>'
};
console.log('app initialized');
startGeolocation();
}
As of BlackBerry WebWorks 1.0.2.9 SDK, all domains you plan on making Ajax/XHR requests to must be whitelisted in your app's config.xml.
<access uri="*" subdomains="true" />
<access uri="http://virtualearth.net" subdomains="true" />
<access uri="http://bing.net" subdomains="true" />
Don't forget to access the devices location information via HTML5 Geolocation, the proper permissions must be requested.
<rim:permissions>
<rim:permit>access_location_services</rim:permit>
</rim:permissions>
Your API Keys are meant to be private. For demonstration purposes we're coding the keys right in the JavaScript source. This is not best practice, and is not recommended. You don’t want anybody to get access to your keys.
One way to securely pass your API Keys to your application is to host them on a server, then use SSL and do a POST to obtain your keys.
- Clone the repo to your local machine
- Use Using the Ripple Mobile Emulator and either the BlackBerry WebWorks SDK for Smartphone or the BlackBerry WebWorks SDK for Tablet OS, package the contents of your local BB10-WebWorks-Samples/Maps folder into a BlackBerry application.
- BlackBerry HTML5 WebWorks - Downloads, Getting Started guides, samples, code signing keys.
- BlackBerry WebWorks Development Guides
- BlackBerry WebWorks Community Forums
- BlackBerry Open Source WebWorks Contributions Forums
Please see the README of the BB10-WebWorks-Samples repository for instructions on how to add new Samples or make modifications to existing Samples.
If you find a bug in a Sample, or have an enhancement request, simply file an Issue for the Sample.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.