Coder Social home page Coder Social logo

GMaps undefined about ember-cli-g-maps HOT 7 CLOSED

trevorrjohn avatar trevorrjohn commented on June 12, 2024
GMaps undefined

from ember-cli-g-maps.

Comments (7)

Matt-Jensen avatar Matt-Jensen commented on June 12, 2024

Is this a fresh install of the addon? If not you may need to update your bower dependencies or ember-cli-g-maps.

Otherwise some steps to reproduce this or the offending lines in /assets/vendor.js would be helpful to debug.

from ember-cli-g-maps.

trevorrjohn avatar trevorrjohn commented on June 12, 2024

This is a fresh install:

Here is the method that is raising the error:

/**
 * [geocode instantiates a google.maps Geocoder]
 * @param  {[object]} options [accepts properties lat, lng, and callback]
 * @return {[Geocoder]}       [instance of Geocoder]
 */
GMaps.prototype.geocode = function geocode(options) {
  if(!options || !options.callback) {
    throw new Error('geocode requires an options object with a callback');
  }

  var callback = options.callback;

  if (options.hasOwnProperty('lat') && options.hasOwnProperty('lng')) {
    options.latLng = new google.maps.LatLng(options.lat, options.lng);
  }

  delete options.lat;
  delete options.lng;
  delete options.callback;

  /* This line blows up! */
  gMapsGeocoder.geocode(options, function(results, status) {
    callback(results, status);
  });
};

from ember-cli-g-maps.

trevorrjohn avatar trevorrjohn commented on June 12, 2024

it seems that gMapsGeocoder is never being instantiated. I put a breakpoint here:

function setupGMapsForApps() {
  if (isGMapsForAppsSetup) {
    return false;
  } else {
    isGMapsForAppsSetup = true;
  }

  // Instantiate gMapsGeocoder
  gMapsGeocoder = new google.maps.Geocoder();

but it was never hit... I am only using the geocoder, and am not sure what actually triggers the instantiation.

from ember-cli-g-maps.

Matt-Jensen avatar Matt-Jensen commented on June 12, 2024

I am only using the geocoder

Are you not instantiating an Ember-cli-g-maps component in your application?

from ember-cli-g-maps.

trevorrjohn avatar trevorrjohn commented on June 12, 2024

no. I am not.

from ember-cli-g-maps.

Matt-Jensen avatar Matt-Jensen commented on June 12, 2024

I believe that's the issue.

Short version
reinstall your bower dependencies and it should work.

Long version
It was an issue with the gmaps-for-apps bower dependency (used by this project) instantiating the Google Maps Geocoder instance when the first GMaps instance was created. In the latest release of that project I've moved instantiation of the Geocoder to the first invocation of the geocode method: the commit here shows the update which I think makes more sense.

from ember-cli-g-maps.

trevorrjohn avatar trevorrjohn commented on June 12, 2024

ok thanks, I will update.

from ember-cli-g-maps.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.