Hi All
I've been searching the site and only find some solutions to solve this in DGLux however Im looking for a solution to it in HTML. Could someone please advise me?
Thank you
Shivan
Hi All
I've been searching the site and only find some solutions to solve this in DGLux however Im looking for a solution to it in HTML. Could someone please advise me?
Thank you
Shivan
Thanks Woody. I did have a look at templating but that doesn't address my current issue exactly. I am using those methods for pulling across data from datasources and its working well.
Thanks Will for your response. I will spend some time looking into your suggestion and get back to you after some time. Much appreciated.
Regards
Shivan
Hi All
I am building an interface to represent data from various datasources. Currently i choose my datasource from a drop down list in the following manner:
<div layout="row">
<md-input-container flex="" class="no-errors-spacer">
<h2>Choose a device</h2>
<md-select ng-model="deviceName" ng-init="deviceName='Generators'">
<md-option ng-value="'Demo_Gen1'">Demo_Gen1</md-option>
<md-option ng-value="'Demo_Gen2'">Demo_Gen2</md-option>
<md-option ng-value="'Demo_Gen3'">Demo_Gen3</md-option>
<md-option ng-value="'Demo_Gen4'">Demo_Gen4</md-option>
</md-select>
</md-input-container>
</div>
This works fine but now I want to use Google maps and specify the Lat and Long of each site using markers. I have achieved this task. My question is how can I link each marker to a specific datasource? Please let me know if I need to post up any additional code.
Thank you
Shivan