farhanwazir / laravelgooglemaps

Laravel Google Maps Package
MIT License
152 stars 112 forks source link

Issue when loading google maps in https #9

Closed wissamdagher closed 7 years ago

wissamdagher commented 7 years ago

When trying to use the wrapper in https mode the map does not display a simple change in $apiLocation = 'http://maps.googleapis.com/maps/api/js?key='.$this->apiKey.'&sensor='.$this->sensor; to $apiLocation = 'https://maps.googleapis.com/maps/api/js?key='.$this->apiKey.'&sensor='.$this->sensor;

it will fix the issue

farhanwazir commented 7 years ago

Thank you, i forgot to change it in production (Y)

farhanwazir commented 7 years ago

Fixed

@wissamdagher as contributor added

wissamdagher commented 7 years ago

Thank you