Navigation

    Monaca & Onsen UI
    • Login
    • Search
    • Tags
    • Blog
    • Playground
    1. Home
    2. Tags
    3. google maps

    • R

      cordova-plugin-googlemaps: error on browser
      Monaca Tools • google maps cordova-plugin-googlemaps • • rcpinheiro

      1
      0
      Votes
      1
      Posts
      2693
      Views

      No one has replied

    • Google maps not displaying “angular-google-maps”
      Onsen UI • angular visual studio cordova 6.0 google maps geolocation whitelist • • Leonardo Augusto

      1
      0
      Votes
      1
      Posts
      4078
      Views

      No one has replied

    • Onsen UI sliding menu stops with Angular Map
      Onsen UI • angular visual studio google maps • • Leonardo Augusto

      4
      0
      Votes
      4
      Posts
      6152
      Views

      Solved here @munsterlander and guys! If anyone needs !!! I’ve made a modification to turn on the Network connection , instead of exit the app. Plugins cordova plugin network information https://github.com/apache/cordova-plugin-network-information cordova device https://cordova.apache.org/docs/en/3.0.0/cordova/device/device.html Cordova-open-native-settings https://github.com/selahssea/Cordova-open-native-settings On <head> section function checkConnection() { // Wait for device API libraries to load // document.addEventListener("deviceready", onDeviceReady, false); // device APIs are available // function onDeviceReady() { checkConnection(); } var networkState = navigator.connection.type; var states = {}; states[Connection.UNKNOWN] = 'Unknown connection'; states[Connection.ETHERNET] = 'Ethernet connection'; states[Connection.WIFI] = 'WiFi connection'; states[Connection.CELL_2G] = 'Cell 2G connection'; states[Connection.CELL_3G] = 'Cell 3G connection'; states[Connection.CELL_4G] = 'Cell 4G connection'; states[Connection.CELL] = 'Cell generic connection'; states[Connection.NONE] = 'No network connection'; if ((states[networkState]) == states[Connection.NONE]) { if (confirm('Please check your Internet connection. Do you want to acess your settings?')) { if (typeof cordova.plugins.settings.openSetting != undefined) cordova.plugins.settings.openSetting("wifi", function () { console.log("acessing now ... please wait") }, function () { console.log("failed to open wifi settings") }); } else { navigator.app.exitApp(); } // end even when you turn on the network navigator.app.exitApp(); } } checkConnection();
    • P

      Build a Places App with Foursquare and Google Maps using Onsen UI and AngularJS
      Monaca & Onsen UI Articles • onsen ui tutorial angular google maps foursquare • • patrick

      4
      0
      Votes
      4
      Posts
      6152
      Views

      As was listed in the original tutorial, you would need to check the Foursquare API docs for the requested information, endpoints. I couldn’t quickly locate the information you wanted, so it may not be provided by the API; however, user tips was, The docs are listed here: https://developer.foursquare.com/docs/users/tips
    • Creating Google Maps Sample App with AngularJS and Onsen UI
      Monaca & Onsen UI Articles • onsen ui tutorial angular google maps • • OnsenUI

      1
      0
      Votes
      1
      Posts
      3674
      Views

      No one has replied