We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm using the Google Map Widget (extending Cheesegrits\FilamentGoogleMaps\Widgets\MapWidget) in my Filament App.
Cheesegrits\FilamentGoogleMaps\Widgets\MapWidget
I have set the Zoom value using the class property.
protected static ?int $zoom = 8;
The Google Map widget would have Zoom out (to the level of 8)
But the Zoom values are not reflected in the rendered Widget. The Map is Zoomed In to the maximum level (level 20)
I have a Couple more questions regarding the Map Widget as well.
data
$this->getData()
The text was updated successfully, but these errors were encountered:
@kingmaker-agm use this option protected static ?bool $fitToBounds = false;
protected static ?bool $fitToBounds = false;
Sorry, something went wrong.
This helped me to solve the Issue.
Can someone help me with the Questions in the Issue #122 ?
No branches or pull requests
Issue
I'm using the Google Map Widget (extending
Cheesegrits\FilamentGoogleMaps\Widgets\MapWidget
) in my Filament App.I have set the Zoom value using the class property.
Expected Behavior
The Google Map widget would have Zoom out (to the level of 8)
Actual Behavior
But the Zoom values are not reflected in the rendered Widget. The Map is Zoomed In to the maximum level (level 20)
Example
Other Questions
I have a Couple more questions regarding the Map Widget as well.
data
(obtained from the$this->getData()
) to be reflected in the displayed Map?The text was updated successfully, but these errors were encountered: