Giter VIP home page Giter VIP logo

Comments (6)

kitchensjn avatar kitchensjn commented on June 26, 2024 3

I'm probably late to this thread but just had to work through this myself:

const ezButton = L.easyButton(
    '<span style="font-size:2em; line-height:26px; color:#FF3D2D;">&hearts;</span>', 
    function (btn, map) {}
)
ezButton.button.style.padding = '0px';

This will remove the padding and allow your icon to be centered within the button. There may be a more elegant way of changing the button style when you initially create it. Hope this helps get you on the right track!

from leaflet.easybutton.

sonfire186 avatar sonfire186 commented on June 26, 2024 1

#48

function _fixEasyButtonSize(button) {
    var buttonElement = button.button;
    buttonElement.style.padding = '0px';
    buttonElement.style.width = "26px";
    buttonElement.style.height = "26px";
    buttonElement.style.minWidth = "26px";
    buttonElement.style.minHeight = "26px";
}
_fixEasyButtonSize(button);

from leaflet.easybutton.

atstp avatar atstp commented on June 26, 2024

My hunch is that this is more of general styling issue than an EasyButton issue. I'm happy to help with what I can though.

I'd guess that this stems from putting a large/wide character into a smaller, square box.

If you set font-size:26px (to match your line-height), how is centering affected?

from leaflet.easybutton.

sonfire186 avatar sonfire186 commented on June 26, 2024

I found the same problem on desktop computers

from leaflet.easybutton.

dgva avatar dgva commented on June 26, 2024

For me, adding padding: 0; directly to the CSS file, in the initial property, solves the issue:

.leaflet-bar button,
.leaflet-bar button:hover {
...
padding: 0;
}

In my case, i use a trick to place icons everywhere, using an extra CSS file and a function. But in the end, it results in the same problem as posted here, so even though they are slightly different situations, this solution should work for both.

from leaflet.easybutton.

F4FXL avatar F4FXL commented on June 26, 2024

I am using leaflet embeded into a Wordpress site. Had a similar issue.
It turned out to be the Wordpress CSS setting some styles to the button.
Adding this as an inline css solved the issue for me.

button.easy-button-button	{
	padding: unset !important;
	font-size: unset !important;
	font-weight: unset !important;
	text-transform: unset !important;
	-webkit-transition: unset !important;;
	transition: unset !important;
}

from leaflet.easybutton.

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.