Viewing 13 replies - 1 through 13 (of 13 total)
  • Does Baidu Maps have an API or a embedding system similar to Google Maps?

    Thread Starter Kunal

    (@kunalnagar)

    Hi there,

    Sorry for the late response.

    First of all, there is an API for Baidu Maps that is similar to the Google Maps API.

    I was going through the plugin documentation and found this link: https://wp-events-plugin.com/tutorials/modifying-event-location-google-maps/

    Here, we have the following snippet:

    jQuery(document).bind('em_maps_location_hook', function( e, map, infowindow, marker ){
    	....
    });

    Can the map object that is being returned here be replaced with a Baidu Map object? If yes, could you give some insight?

    Plugin Support angelo_nwl

    (@angelo_nwl)

    here’s another thread which may help you with this – https://wp-events-plugin.com/tutorials/modifying-event-location-google-maps/

    Thread Starter Kunal

    (@kunalnagar)

    Hi Angelo.

    It is the same URL that I posted above.

    Plugin Support angelo_nwl

    (@angelo_nwl)

    oops, sorry about that; at the moment this is not possible and might require lots of coding on your part.

    Thread Starter Kunal

    (@kunalnagar)

    Lots of coding? Can’t we just replace the Google Maps Object with the Baidu Maps object and hook into the events as it says in the article?

    No, because the Events Manager code is specifically targeting the features, functions calls and API of Google Maps. Using another maps provider would mean overriding all of that code.

    Thread Starter Kunal

    (@kunalnagar)

    I have no problem overriding code as long as there are hooks available. You’re saying that there are no hooks available also to override Google Maps functionality?

    Not at all, you’ll find all the Google Maps related code within /includes/js/events-manager.js.

    Thread Starter Kunal

    (@kunalnagar)

    So basically, if I get the same data that Google Maps is getting via the Baidu Maps and send it to the plugin hook that saves it as an event, you’re saying it would work right?

    Just getting my facts straight, thanks for bearing with me!

    kunalnagar,this question gets me puzzled,too. i used tencent Map api instead,and it worked but not perfectly,the infowindow dosen’t show.have you aiready solved this problem?

    Thread Starter Kunal

    (@kunalnagar)

    So I decided not to mess with the plugin’s code.

    Basically, I am getting the data from Baidu Maps and then passing it over to the plugin hooks. The best way I have found on how to go about this is to replace the Metabox itself.

    For example, when you add a Location, there is a Where metabox. I have replaced that with my own custom metabox that takes into account Baidu Map Data. I am then using the following plugin filter to save the data:

    add_filter( 'em_location_save', array( $this, 'mm_location_save' ), 1, 2 );

    I hope that makes sense!

    Great idea! But i’m not a developer,maybe i can have a try.

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Replace Google Maps with Baidu Maps’ is closed to new replies.