Git Product home page Git Product logo

Comments (5)

mmomtchev avatar mmomtchev commented on May 12, 2024 1

The width parameter is mandatory - if you use TypeScript or a smart code editor - it would point these issues to you before even running your code.

from rlayers.

ngrhadi avatar ngrhadi commented on May 12, 2024

For line and polygon it's not work just on Feature, but on GeoJSON layer it's work well, here response fetching for line

const {
	data: lvOgConductorDataViewSet,
	isLoading: isLoadingLvOgConductor,
	isError: isErrorLvOgConductor,
	isSuccess: isSuccessLvOgConductor,
} = useLvOg();

if (lvOgConductorDataViewSet === null) {
	return <div>{isLoadingLvOgConductor}</div>;
} else if (isErrorLvOgConductor) {
	return <div>{isErrorLvOgConductor}</div>;
} else if (isSuccessLvOgConductor) {
	return { lvOgConductorDataViewSet };
}

const featuresLvOg = Object.keys(lvOgConductorDataViewSet ?? {}).map(
	(key) =>
		new Feature({
			geometry: new LineString(
				lvOgConductorDataViewSet[key].geometry.coordinates,
			),
			id: lvOgConductorDataViewSet[key].id,
			status: lvOgConductorDataViewSet[key].status,
			phasing: lvOgConductorDataViewSet[key].phasing,
			usage: lvOgConductorDataViewSet[key].usage,
			dat_qty_cl: lvOgConductorDataViewSet[key].dat_qty_cl,
			db_oper: lvOgConductorDataViewSet[key].db_oper,
			label: lvOgConductorDataViewSet[key].label,
			remarks: lvOgConductorDataViewSet[key].remarks,
			device_id: lvOgConductorDataViewSet[key].device_id,
			lvdb_in_no: lvOgConductorDataViewSet[key].lvdb_in_no,
			lvdb_ot_no: lvOgConductorDataViewSet[key].lvdb_ot_no,
			in_lvdb_id: lvOgConductorDataViewSet[key].in_lvdb_id,
			out_lvdb_id: lvOgConductorDataViewSet[key].out_lvdb_id,
			length: lvOgConductorDataViewSet[key].length,
		}),
);
// console.log(featuresLvOg.map((item) => item)); // work

image

I'm using React-Query for fetching to integrated with react-hook-form to query attribute table.

from rlayers.

mmomtchev avatar mmomtchev commented on May 12, 2024

A circle by itself doesn't do anything, you also have to specify a fill color or a stroke color:

<RStyle.RStyle>
    <RStyle.RCircle radius={5}>
        <RStyle.RFill color='red' />
    </RStyle.RCircle>
</RStyle.RStyle>

This is a solid red circle with a radius of 5 pixels.
You can check the examples for how to use the styles.

Also , you are using lots of non existing properties - ROverlay doesn't have element, position or offset, RPopup doesn't have onClose, RCircle doesn't have lineJoin or color.

from rlayers.

ngrhadi avatar ngrhadi commented on May 12, 2024

I was check it, and I was using you sample on Point it's work, thanks
here when I was create line

<RStyle.RStyle>
   <RStyle.RStroke color="red" />
</RStyle.RStyle>

that's not work sir, what maybe my data when to provide that Linestring Feature has wrong?

from rlayers.

ngrhadi avatar ngrhadi commented on May 12, 2024

Thanks sir, my bad, I was not configured linestring exactly as openlayers want, and now I have issues to display multiLineString with object.key.

Thanks for your time sir, really appreciate πŸ™

from rlayers.

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.