Giter Site home page Giter Site logo

Custom Controls about ionic-googlemaps-demo HOT 5 CLOSED

wf9a5m75 avatar wf9a5m75 commented on June 26, 2024
Custom Controls

from ionic-googlemaps-demo.

Comments (5)

wf9a5m75 avatar wf9a5m75 commented on June 26, 2024 1

https://github.com/wf9a5m75/ionic-googlemaps-demo/blob/master/src/pages/map/get-map/get-map.html#L121-L124

from ionic-googlemaps-demo.

wf9a5m75 avatar wf9a5m75 commented on June 26, 2024

Yes, possible. That's why JS developers use this plugin.
Just put any HTML elements on the map.

from ionic-googlemaps-demo.

wf9a5m75 avatar wf9a5m75 commented on June 26, 2024

For example,

<div class="map" id="map_canvas1">
  <button ion-button (click)="onButton1_click($event)" >Click here</button></span>
</div>

from ionic-googlemaps-demo.

wf9a5m75 avatar wf9a5m75 commented on June 26, 2024

But you don't need to put the element inside the map div tag.
This plugin recognizes z-index also.
If you set higher z-index than the map div, it is clickable.

from ionic-googlemaps-demo.

ThorvaldAagaard avatar ThorvaldAagaard commented on June 26, 2024

So instead of

        // Create the DIV to hold the control and call the CenterControl()
        // constructor passing in this DIV.
        var centerControlDiv = document.createElement('div');
        var centerControl = new CenterControl(centerControlDiv, map);

        centerControlDiv.index = 1;
        map.controls[google.maps.ControlPosition.TOP_CENTER].push(centerControlDiv);

I just add a div and reference that div in the code like this

        var centerControlDiv = document.getElementById('mapcustomdiv');
        var centerControl = new CenterControl(centerControlDiv, map);
        centerControlDiv.index = 1;

I know this could be done with styling, but just as an example of overlaying the map with custom html

from ionic-googlemaps-demo.

Related Issues (7)

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.