Map on image in flutter (like in html) - html

I'm working on an app where I need map-like in html function.. the thing is I have the website ready
The website shows a picture of an auto-part with multiple clickable areas so the user can select which
part to select
Example
I wondering if I can find this functionality in Flutter
Thanks in advance

I have not used this package yet but this might work for you - https://pub.dev/packages/flutter_image_map
From what I've seen in the readme/example tab you should be able to achieve your design.

Related

Adding a interactive gui to my VB.net application

OK. So first, I will try my best to explain so good. My friend has gotten cursed out on this forum for not explaining, so I will explain. :)
Ok so I have my program built and all. But then it hit me! Wouldn't it be better to add a news feature? One teeny tiny problem? I cant? How would I implement a interactive code into an HTML page.
Like can i connect a button to a URL that will make the program do something. Almost like you can open cydia tweaks with there identifier and url EXAMPLE: http://handleopenurl.com/scheme/cydia And then i can add urls so i can update the program, without updating the files.
Or even just a featured news thing would be nice. But how would i implement this perfectly. I tryed a webrowser, but the page is too big for it. I am good at html, not much at css, i mostly use Adobe Muse http://www.adobe.com/Muse
Last question. Kinda defies the first thing i said about having my program finished.
Is there a way i can add a plus button and make it add more buttons and more labels and all?
This would help with allowing users to customize more then what the program can handle. By The Way, its a winter board Theme Maker. So I have a bunch of icons with there bundle identifiers and I create the folders with VB.net and all that stuff. But i want users to be able to click a plus button to add MORE text boxes and file browsers.
Any ideas? Maybe DIM 1 as NewFileBrowser? But i need to move all the buttons and i need it to be able to be clicked an infinity amount of times. I can do the coding for all of these buttons, but i jest need to know how to create them <1 Move them and the button so that the button goes further down each time, and more boxes will go further down. Much help apreciated. THANKS:)
EDIT:
Are you trying to say that you're wondering how to have a web browser control in a vb.net >app, which displays a web page, and when a button is clicked on the page, your app detects >it and does something? – Thraka
That sums up the top part. I am using windows forms, and it is coded in VB.net
If you get the object you want, like the button, you can hook the event and have it call code in your form.
Find the object using the Browser.Document.GetElementById method.
With that object, add an event handler to the Click event.
See http://msdn.microsoft.com/en-us/library/system.windows.forms.htmlelementeventhandler(v=vs.110).aspx for information about the event handler used

Get point from webpage VB.NET

How can I get the point from a webpage?
Let's say I want to click on a textbox from a site, because it's easier than searching all the tag names and stuff. So...when click on a button I can go to the webbrowser and get the point of that textbox (e.g 400,210), but I want to get the point to work for the webbrowser not matter what size it is. How can I do it?
Sounds like you're trying to write a screen scraper. I suggest you look at BeautifulSoup.

How can i add tabs in google map info?

I want to add HTML tabs withdrawing current design of info window of google map. Something like this
I am going through OpenLayers API, but i am not sure how to achieve this.
Any suggestion?
I'm not sure what the programmer used to create that red Info Window in your screenshot.
However, InfoBubble is capable of creating tabs, and you can also customize its styles. Try the demos:
http://google-maps-utility-library-v3.googlecode.com/svn/trunk/infobubble/examples/example.html/
You could also use Infobox and create the HTML to make it look like your example using Twitter Bootstrap + HTML.
I did this in my site and it worked great

How to show a Webview in a Mac Dashboard Widget?

I am making a simple Mac Dashboard widget which would show a webpage in a webview, from a user selectable URL.
To be honest, I assumed there would simply be a 'webview' type part in the Library which I could just drop on. I've tried fiddling with the canvas part and Googling, but to no avail.
Any ideas of how to simply show http://www.example.com/page.html in a widget?
Thanks!
In case anybody comes here from a search or something, I ended up solving my problem by just viewing the widget's HTML and adding an <iframe> to it. Don't know why I didn't think of that before, but it all works fine.

Sencha Touch Nestedlist JSON format Example

I'm new to sencha. Using Sencha touch. I would like to make nested listing like first of list comes, when click on one of the link it goes to another listing, when click on second list's any link it opens image like that.
http://dev.sencha.com/deploy/touch/examples/nestedlist/
Above example is perfectly suitable for this one more than that below application.
http://touchstyle.mobi/app/
When i'm doing any modification in
http://dev.sencha.com/deploy/touch/examples/nestedlist/
it gives no error or warning i'm using Fedora 11 linux Google Chrome.
Can anybody tell me what is the JSON perfect format for this nested listing. I will do it for dynamic.
So if anyone help to get static nested list it would be better.
if you open the web inspector in safari you'll see for the example above, the data should be formatted like:
{"text":".","children":[{"fileName":"widgets","id":".\/widgets","cls":"folder"},{"fileName":"gestures","id":".\/gestures","cls":"folder"},{"fileName":"data","id":".\/data","cls":"folder"},{"fileName":"core","id":".\/core","cls":"folder"},{"fileName":"util","id":".\/util","cls":"folder"},{"fileName":"layout","id":".\/layout","cls":"folder"},{"fileName":"platform","id":".\/platform","cls":"folder"}]}
web inspector or firebug are mandatory for sencha hacking :)
brad