Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify JS to support HTTPS #218

Open
GoogleCodeExporter opened this issue Feb 29, 2016 · 0 comments
Open

Modify JS to support HTTPS #218

GoogleCodeExporter opened this issue Feb 29, 2016 · 0 comments

Comments

@GoogleCodeExporter
Copy link

This is a really simple fix, but in the code, there's a line that's loading the 
MarkerClusterer images over http:

/**
 * The marker cluster image path.
 *
 * @type {string}
 * @private
 */
MarkerClusterer.prototype.MARKER_CLUSTER_IMAGE_PATH_ =
    'http://google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/' +
    'images/m';

if we just change that to:

/**
 * The marker cluster image path.
 *
 * @type {string}
 * @private
 */
MarkerClusterer.prototype.MARKER_CLUSTER_IMAGE_PATH_ =
    '//google-maps-utility-library-v3.googlecode.com/svn/trunk/markerclusterer/' +
    'images/m';

...it'll work without throwing any error messages about loading over http 
instead of https!

Original issue reported on code.google.com by [email protected] on 5 Dec 2013 at 3:25

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant